AI Center
2021.10
false
Banner background image
AI Center Installation Guide
Last updated 2024年3月11日

General AI Center Troubleshooting and FAQs

Message: Failed to Upload Item(s), It May Be Due to a Slow or Lost Internet Connection

When uploading dataset files, the following error can occur:

Failed to upload item(s), it may be due to a slow or lost internet connection

Possible Cause

This error message can show up because of some browser configurations.

Solution

Open browser console and get the DNS of the objectstore url. It will be of the form objectstore.xxx.xx Make sure that the objectstore DNS is resolvable either by adding to host file or talking to your network administrator Once the DNS is resolved, if the certificate is not trusted, make sure you trust the certificate inside your browser before uploading the item.

Issue: Error on Pipelines Pages Even Though Permissions Are in Place for Running Pipelines

When trying to view or run pipelines, an error can be occur, even though permissions to run pipelines are in place.

Solution

In order to run and view pipelines, Read permissions on the ML Packages are mandatory.

Issue: Service Deployment Can Get Stuck because of the DATABASECHANGELOGLOCK Lock Not Being Released by One Service

On rare occasions, if you restart the machine two times consecutively, service deployment can get stuck because of the DATABASECHANGELOGLOCK lock not being released by one service. In this case you will see AI Center pods restarting continuously.

Solution

Run the following SQL command in the AI Center database to release the lock:

UPDATE DATABASECHANGELOGLOCK SET LOCKED = 0, LOCKGRANTED = null, LOCKEDBY = nullUPDATE DATABASECHANGELOGLOCK SET LOCKED = 0, LOCKGRANTED = null, LOCKEDBY = null

Issue: Import/export Script Fails

The import/export script is failing with the following error message:

cookfile_new.txt: Permission denied

Solution

Remove the cookfile.txt and cookfile_new.txt files generated locally by the import/export script.

Message: ./export.sh: Line 2: $'r': Command Not Found

When running the import or export scripts, the following error message can occur:

./export.sh: line 2: $'\r': command not found

This error message is displayed when importing or exporting ML Packages using scripts.

Solution

Run the following command before running the import or export script:

dos2unix <filename>dos2unix <filename>

Issue: Signed URL for Public Datasets Is Failing

This issue can occur when running a UiPath Studio automation and uploading validation data for training using a public dataset.

Solution

If you encounter this issue, try one of the following solutions:

  • Upload the package manually.
  • Use a private dataset so you can connect through a robot that can leverage this.

Issue: The Update-mlskills-cm Cronjob Is Missing

The update-mlskills-cm cronjob is missing in AI Center versions 2021.10.1 and 2021.10.2.

Solution

To avoid failing ML Skills deployments and predictions because of this issue, create the cronjob manually by using the YAML file below.
apiVersion: batch/v1beta1
kind: CronJob
metadata:
  name: update-mlskill-cm
  namespace: uipath
spec:
  concurrencyPolicy: Forbid
  failedJobsHistoryLimit: 1
  jobTemplate:
    spec:
      template:
        metadata:
          annotations:
            sidecar.istio.io/inject: "false"
        spec:
          containers:
          - args:
            - -XPOST
            - ai-deployer-svc.uipath.svc.cluster.local/ai-deployer/v1/system/mlskills:update-cm
            image: registry.uipath.com/aicenter/alpine-curl:7.78.0
            imagePullPolicy: IfNotPresent
            name: update-mlskill-cm
            securityContext: 
              allowPrivilegeEscalation: false
              capabilities:
                drop:
                - NET_RAW
              privileged: false
              readOnlyRootFilesystem: true
              runAsNonRoot: true
          dnsPolicy: ClusterFirst
          imagePullSecrets:
          - name: regcred
          restartPolicy: OnFailure
          schedulerName: default-scheduler
          securityContext: {}
          terminationGracePeriodSeconds: 30
      ttlSecondsAfterFinished: 120
  schedule: 0 */2 * * *
  startingDeadlineSeconds: 200
  successfulJobsHistoryLimit: 1
  suspend: falseapiVersion: batch/v1beta1
kind: CronJob
metadata:
  name: update-mlskill-cm
  namespace: uipath
spec:
  concurrencyPolicy: Forbid
  failedJobsHistoryLimit: 1
  jobTemplate:
    spec:
      template:
        metadata:
          annotations:
            sidecar.istio.io/inject: "false"
        spec:
          containers:
          - args:
            - -XPOST
            - ai-deployer-svc.uipath.svc.cluster.local/ai-deployer/v1/system/mlskills:update-cm
            image: registry.uipath.com/aicenter/alpine-curl:7.78.0
            imagePullPolicy: IfNotPresent
            name: update-mlskill-cm
            securityContext: 
              allowPrivilegeEscalation: false
              capabilities:
                drop:
                - NET_RAW
              privileged: false
              readOnlyRootFilesystem: true
              runAsNonRoot: true
          dnsPolicy: ClusterFirst
          imagePullSecrets:
          - name: regcred
          restartPolicy: OnFailure
          schedulerName: default-scheduler
          securityContext: {}
          terminationGracePeriodSeconds: 30
      ttlSecondsAfterFinished: 120
  schedule: 0 */2 * * *
  startingDeadlineSeconds: 200
  successfulJobsHistoryLimit: 1
  suspend: false

Disabling streaming logs

Versions up to 2021.10.4

To disable log streaming on existing skills, edit the skill deployment and change the LOGS_STREAMING_ENABLED environment variable to false. You can also add a logsStreamingEnabled global variable with the value set as false using ArgoCD under the aicenter app details. Make sure to sync ArgoCD after the change is done.


Versions from 2021.10.5

To disable streaming logs for versions starting with 2021.10.5, toggle the ArgoCD values from the screenshot.



Was this page helpful?

Get The Help You Need
Learning RPA - Automation Courses
UiPath Community Forum
Uipath Logo White
Trust and Security
© 2005-2024 UiPath. All rights reserved.