Change Password

Please enter the password.
Please enter the password. Between 8-64 characters. Not identical to your email address. Contain at least 3 of: uppercase, lowercase, numbers, and special characters.
Please enter the password.
Submit

Change Nickname

Current Nickname:
Submit

Apply New License

License Detail

Please complete this required field.

  • Ultipa Graph V4

Standalone

Please complete this required field.

Please complete this required field.

The MAC address of the server you want to deploy.

Please complete this required field.

Please complete this required field.

Cancel
Apply
ID
Product
Status
Cores
Applied Validity Period(days)
Effective Date
Excpired Date
Mac Address
Apply Comment
Review Comment
Close
Profile
  • Full Name:
  • Phone:
  • Company:
  • Company Email:
  • Country:
  • Language:
Change Password
Apply

You have no license application record.

Apply
Certificate Issued at Valid until Serial No. File
Serial No. Valid until File

Not having one? Apply now! >>>

Product Created On ID Amount (USD) Invoice
Product Created On ID Amount (USD) Invoice

No Invoice

v5.0
Search
    English
    v5.0

      Process and Job

      This section introduces methods for managing processes and jobs.

      Process

      top()

      Retrieves all running processes in the database.

      Parameters

      • config: RequestConfig (Optional): Request configuration.

      Returns

      • List[Process]: The list of retrieved processes.

      # Retrieves all running processes in the database
      
      processes = Conn.top()
      for process in processes:
          print(process.processId, "-", process.processQuery)
      

      1049542 - MATCH p = ()->{1,3}() RETURN p LIMIT 5000
      

      kill()

      Kills running processes in the database.

      Parameters

      • id: str: ID of the process to kill; set to * to kill all.
      • config: RequestConfig (Optional): Request configuration.

      Returns

      • Response: Response of the request.

      # Retrieves all running processes in the database and kills them all
      
      processes = Conn.top()
      for process in processes:
          response = Conn.kill(process.processId)
          print(process.processId, "-", process.processQuery, "- Kill", response.status.code.name)
      

      1049607 - MATCH p = ()->{1,3}() RETURN p LIMIT 5000 - Kill SUCCESS
      

      Job

      showJob()

      Retrieves jobs in the graph.

      Parameters

      • id: str (Optional): Job ID.
      • config: RequestConfig (Optional): Request configuration.

      Returns

      • List[Job]: The list of retrieved jobs.

      # Retrieves all failed jobs in the graph 'miniCircle'
      
      requestConfig = RequestConfig(graph="miniCircle")
      
      jobs = Conn.showJob(config=requestConfig)
      failed_jobs = [job for job in jobs if job.status == "FAILED"]
      
      if failed_jobs:
          for job in failed_jobs:
              print(job.id, "-", job.type, "-", job.errMsg)
      else:
          print("No failed jobs")
      

      51 - Fulltext name already exists. - CREATE_FULLTEXT
      42 - Fulltext name already exists. - CREATE_FULLTEXT
      26 - [engine] uuids should be unsigned integer - HDC_ALGO
      26_1 -  - HDC_ALGO
      17 - [engine] all failed, because some nodes do not exist in db - HDC_ALGO
      17_1 -  - HDC_ALGO
      

      stopJob()

      Stops a running job in the graph.

      Parameters

      • id: str: ID of the job to stop.
      • config: RequestConfig (Optional): Request configuration.

      Returns

      • Response: Response of the request.

      # Retrieves all running jobs in the graph 'miniCircle' and stops them all
      
      requestConfig = RequestConfig(graph="miniCircle")
      
      jobs = Conn.showJob(config=requestConfig)
      running_jobs = [job for job in jobs if job.status == "RUNNING"]
      
      for running_job in running_jobs:
          response = Conn.stopJob(running_job.id, requestConfig)
          print(running_job.id, "-", running_job.type, "- Stop", response.status.code.name)
      

      10 - CREATE_FULLTEXT - Stop FAILED
      10_1- CREATE_FULLTEXT - Stop SUCCESS
      10_2 - CREATE_FULLTEXT - Stop SUCCESS
      

      clearJob()

      Clears a job that is not running from the graph.

      Parameters

      • id: str: ID of the job to stop.
      • config: RequestConfig (Optional): Request configuration.

      Returns

      • Response: Response of the request.

      # Retrieves all failed jobs in the graph 'miniCircle' and clears them all
      
      requestConfig = RequestConfig(graph="miniCircle")
      
      jobs = Conn.showJob(config=requestConfig)
      failed_jobs = [job for job in jobs if job.status == "FAILED"]
      
      if failed_jobs:
          for job in failed_jobs:
              response = Conn.clearJob(job.id, requestConfig)
              print("Clear", job.id, response.status.code.name)
      else:
          print("No failed jobs")
      

      Clear 51 SUCCESS
      Clear 42 SUCCESS
      Clear 26 SUCCESS
      Clear 26_1 SUCCESS
      Clear 17 SUCCESS
      Clear 17_1 SUCCESS
      

      Full Example

      from ultipa import UltipaConfig, Connection, RequestConfig
      
      ultipaConfig = UltipaConfig()
      # URI example: ultipaConfig.hosts = ["https://mqj4zouys.us-east-1.cloud.ultipa.com:60010"]
      ultipaConfig.hosts = ["192.168.1.85:60061", "192.168.1.87:60061", "192.168.1.88:60061"]
      ultipaConfig.username = "<username>"
      ultipaConfig.password = "<password>"
      
      Conn = Connection.NewConnection(defaultConfig=ultipaConfig)
      
      # Retrieves all failed jobs in the graph 'miniCircle'
      
      requestConfig = RequestConfig(graph="miniCircle")
      
      jobs = Conn.showJob(config=requestConfig)
      failed_jobs = [job for job in jobs if job.status == "FAILED"]
      
      if failed_jobs:
          for job in failed_jobs:
              print(job.id, "-", job.type, "-", job.errMsg)
      else:
          print("No failed jobs")
      
      Please complete the following information to download this book
      *
      公司名称不能为空
      *
      公司邮箱必须填写
      *
      你的名字必须填写
      *
      你的电话必须填写