Questions tagged [pipelining]

19 questions
5
votes
2 answers

In Jenkins how to pass a parameter from Pipeline job to a freestyle job

I am running a pipeline job and with this we need to pass a parameter to a downsteam job but its not working. We tried as follows: Pipeline JOB: node { parameters { choice( name: 'OS', …
Geo
  • 545
  • 3
  • 9
  • 20
3
votes
2 answers

Exchange 2010 SMTP Pipelining support not working correctly

Am trying to configure a Sophos Appliance (SEA) to handle anti-spam. Part of this service is recipient validation, which interrogates the downstream MTA, in our case, Exchange 2010, for a valid recipient. There looks like there is an issue with…
danielgo
  • 41
  • 3
3
votes
1 answer

How do I test HTTP Pipelinning?

I am trying to test if site/server/whatever has ability to pipeline HTTP request. So far, I think it is possible to send several request through one curl session, like: curl http://www.example.com/1.html http://www.example.com/main.css…
Ency
  • 1,201
  • 1
  • 19
  • 26
2
votes
1 answer

jenkins - return something from child job

There is a jenkins pipeline job ("parent"). From it - on one stage there is called another pipeline job ("child" - using build job command). Is there any way to return something (for example short text) from child to parent job without using…
undefine
  • 956
  • 8
  • 20
2
votes
0 answers

How do I update Logstash data to Redshift real-time?

I am looking for a way to build a pipeline for storing the logs data (I use the ELK stack) to AWS Redshift, for analytics. I have gone through the Output plugins for ElasticSearch, and found one for writing data to AWS S3. But, it writes data in…
2
votes
1 answer

Does Apache webserver process http pipelined requests in parallel?

Given we have Apache web server and a client which sends several pipelined requests. According to RFC server is supposed to return responses in the same order as requests are sent. So, does it mean server processes requests sequentially or it would…
alexeit
  • 906
  • 2
  • 16
  • 18
2
votes
0 answers

Cannot connect self-hosted Linux VM to Azure DevOps

I am trying to set up a docker deployment process with Azure DevOps using a self-hosted Linux VM as a deployment target. It seems that I must install the AzurePipelines agent on the target Linux VM first, however it always stalls at the "Connect"…
1
vote
0 answers

Why is sudo password entering lost

When I use sudo command and pipe it to another command, e.g. sudo dnf search foo | grep bar there is a prompt requiring to enter the password. Following this answer, sudo directly accesses the terminal to prompt the password. But I found that there…
1
vote
0 answers

What is an AWS CodeStar SyncResource?

I used CodeStar to create a DataPipeline that: Downloads code from my github repo Tests it in CodeBuild, Creates/executes a CloudFormation changeset on a CloudFormation stack that CodeStar created Which creates/updates a lambda. The…
1
vote
1 answer

Jenkins - environment variable not setting up from pipeline

Here is my script. Im trying to set up variables in pipline shell script: node { anyconnect = docker.image('anyconnect:1').run("--cap-add NET_ADMIN --cap-add SYS_ADMIN --device /dev/net/tun:/dev/net/tun -e VPN_USER=${env.USER} -e…
user3069488
  • 159
  • 2
  • 3
  • 18
1
vote
1 answer

What is the scope of directives in logstash pipelines?

I'm setting up a generic Elasticsearch-Logstash-Kibana stack to deploy to a few of my clients. I'm trying to template some of the pipelines, so that we only need to deploy configs/pipelines as needed for each client. Logstash refers to input{...},…
Drew
  • 253
  • 3
  • 11
1
vote
1 answer

Exim SMTP synchronization error when PIPELINING

I am sending email messages from a PHP script to an Exim 4.71 server via SMTP. The server advertises pipelining so I am trying to take advantage of it. However, when I read back the return codes I finally get 554 SMTP synchronization error. On the…
Greendrake
  • 1,171
  • 1
  • 12
  • 22
1
vote
0 answers

Bitbucket YLM pipeline to deploy on Digital Ocean

I am following this guide to create a pipeline to deploy my Django project to Digital Ocean, Ubuntu 18 droplet. What I have done SSH key generated and added to my remote server and bitbucket Synced yml file with…
sogu
  • 183
  • 2
  • 3
  • 11
0
votes
2 answers

Issue running Jenkins Pipeline Steps using Credentials plugin

I have a basic Pipeline that copies a directory to a remote directory. If i have the username and password in plain text it works fine, but when I try to use withCredentials I get authentication errors. Is there a certain syntax to reference this?…
CEamonn
  • 101
  • 2
0
votes
1 answer

How to enable pipelining in Exim4?

I am using an Exim 4 server to send email out to a few customers, I am no linux guru but it works well. One customer uses AppRiver, an we have been told we need to enable pipelining so they don't treat our email as spam. I spent hours googling…
vido.ardes
1
2