5,730 questions
1
vote
0
answers
37
views
How to implement timeout and retry for long-running Hugging Face model inference in Python?
I'm working with a locally hosted Hugging Face transformers model (mistral-7b, llama2-13b, etc.), using the pipeline interface on a GPU server (A100).
Sometimes inference takes much longer than ...
-4
votes
0
answers
24
views
Dependencies issue in pipeline [closed]
C:\Windows\system32\cmd.exe /D /S /C "C:\Users\sdet-admin\agent\Y\_tool\node\16.19.0\x64\npm.cmd install"
npm ERR! code ERESOLVE
npm ERR! ERESOLVE unable to resolve dependency tree
npm ERR!
...
0
votes
1
answer
41
views
How to generate unique IDs during S3-to-SingleStore columnstore ingestion (AUTO_INCREMENT not supported in SHARDed table)
I’m working on a data pipeline that ingests JSON data from an S3 bucket into a columnstore table in SingleStore.
The challenge is that I need to assign a unique ID (Primary Key) to each record during ...
0
votes
0
answers
23
views
Output file not getting created/saved - BitBucket Pipeline
This is the definition from my Bitbucket YML file
- step: &check_code_quality
name: Run Quality Check
script:
- echo $BITBUCKET_COMMIT
- git fetch origin --no-tags --depth=100 &...
0
votes
1
answer
119
views
Gitlab multi project pipeline - This job could not start because it could not retrieve the needed artifacts
So I have another project which contains artifacts I want to reuse on my project/job/pipeline. So I try to trigger the "another-project"'s pipeline to build the artifacts which I want to ...
-1
votes
0
answers
32
views
Untracked Files Not Being Added in Bitbucket Pipeline During Deployment Process
I have a Bitbucket Pipeline setup to deploy my code to both staging and production environments using SSH and rsync. However, I'm facing an issue where some untracked files are not being added to the ...
0
votes
0
answers
27
views
Apply Merge from Bronze DLT Table into Silver DLT Table with some light cleaning? (Traditional Upsert style)
I am trying to create a DLT pipeline and this is my first time doing it. What is the best possible way to satisfy my following requirements. I am fully aware that the path I am choosing may not be ...
0
votes
1
answer
41
views
Differential Code Coverage in Azure DevOps (ADO) for logical monorepo
I'm working on a project, where I have a pull request pipeline for a logical monorepo.
For this I'm using the git submodule functionality to pull a few repositories into mine, and building them.
I use ...
1
vote
4
answers
80
views
How to fix the issue: ##[error]Error: No package found with specified pattern: /home/vsts/work/1/s/**/*.zip
I have a pipeline for building and deploying an angular app. It builds successfully but fails during deployment with the error:
##[error]Error:
No package found with specified pattern:
/home/vsts/...
0
votes
0
answers
40
views
Jenkins in Docker Cannot Find NPM: npm: not found (Exit Code 127)
Description:
I am running Jenkins inside a Docker container on Windows 11. I have the Ubuntu app installed from the Microsoft Store, which already has npm version 8.5.1 installed.
However, when I run ...
0
votes
1
answer
38
views
Is there a way to create Snowpipe or Ingestion in Snowflake for a public Azure Blob dataset?
I have done Snowpipe before for a azure Blob before, but since it was private I had access to tenant_id and all authentications. Maybe the question seems backward but when a storage is public, Can we ...
0
votes
1
answer
44
views
When Merging the code, all pipeline getting triggered
I have admin api and public api. 2 seperate branch has been created and 2 different pipelines were created. When i merge the public api code, the admin pipeline also getting triggered, which should ...
0
votes
1
answer
119
views
How to pass {{job.trigger.time.iso_date}} - 1 day as a Databricks pipeline parameter?
I'm running a Databricks Workflow and using {{job.trigger.time.iso_date}} to pass the job execution date as a parameter. However, I need to pass the previous day's date instead (i.e., {{job.trigger....
0
votes
1
answer
48
views
Snakemake - Call multiple scripts in a rule
I have a snakemake rule where I call a python script with the script keyword:
rule merge_results:
input:
[...]
output:
path_results
script:
"merge_results.py&...
0
votes
0
answers
72
views
Can I with SDL3 GPU load vertexes, normals, colours, UVs in different buffers?
gLTF and probably other formats have different "buffers" that are long series of data. Unless the gLTF have a "stride", that is interleaved data, every buffer store things ...