Krev
Krev
RRailway
Created by Brilew on 9/27/2024 in #✋|help
Don't auto-enable the new proxy. It's bad for my app and I purposefully leave it off!
send more reqs then
86 replies
RRailway
Created by Brilew on 9/27/2024 in #✋|help
Don't auto-enable the new proxy. It's bad for my app and I purposefully leave it off!
unless Railway checks the quality of IPs? Idk if DO or NAP IPs* are flagged in any way (again, no issues on Legacy)
86 replies
RRailway
Created by Brilew on 9/27/2024 in #✋|help
Don't auto-enable the new proxy. It's bad for my app and I purposefully leave it off!
considering OP is running on DO, i don't think it's provider specific so I guess localhost would work too
86 replies
RRailway
Created by Brilew on 9/27/2024 in #✋|help
Don't auto-enable the new proxy. It's bad for my app and I purposefully leave it off!
yes
86 replies
RRailway
Created by Brilew on 9/27/2024 in #✋|help
Don't auto-enable the new proxy. It's bad for my app and I purposefully leave it off!
you'd prob have to run this all day/week to see something
86 replies
RRailway
Created by Brilew on 9/27/2024 in #✋|help
Don't auto-enable the new proxy. It's bad for my app and I purposefully leave it off!
here's a quick GPT'd code that mimics what we're doing:
const axios = require('axios');

// Your API endpoint
const apiUrl = 'https://your-api-endpoint.com/your-endpoint';

// Data to be sent in the POST request
const requestData = {
key1: 'value1',
key2: 'value2'
};

// Function to send a POST request
async function sendPostRequest() {
try {
const response = await axios.post(apiUrl, requestData);
console.log(`Status: ${response.status}, Data: ${JSON.stringify(response.data)}`);
} catch (error) {
console.error(`Error: ${error.message}`);
}
}

// Start sending 2 POST requests per second
setInterval(() => {
sendPostRequest(); // First request
setTimeout(sendPostRequest, 100); // Second request after 100ms
}, 1000);
const axios = require('axios');

// Your API endpoint
const apiUrl = 'https://your-api-endpoint.com/your-endpoint';

// Data to be sent in the POST request
const requestData = {
key1: 'value1',
key2: 'value2'
};

// Function to send a POST request
async function sendPostRequest() {
try {
const response = await axios.post(apiUrl, requestData);
console.log(`Status: ${response.status}, Data: ${JSON.stringify(response.data)}`);
} catch (error) {
console.error(`Error: ${error.message}`);
}
}

// Start sending 2 POST requests per second
setInterval(() => {
sendPostRequest(); // First request
setTimeout(sendPostRequest, 100); // Second request after 100ms
}, 1000);
i may have exaggerated on 10 RPS, more like no more than 3 RPS
86 replies
RRailway
Created by Brilew on 9/27/2024 in #✋|help
Don't auto-enable the new proxy. It's bad for my app and I purposefully leave it off!
PhoenixNAP
86 replies
RRailway
Created by Brilew on 9/27/2024 in #✋|help
Don't auto-enable the new proxy. It's bad for my app and I purposefully leave it off!
No more than 10 RPS
86 replies
RRailway
Created by Brilew on 9/27/2024 in #✋|help
Don't auto-enable the new proxy. It's bad for my app and I purposefully leave it off!
@blank (revived) and I get this TIMEOUT error too, we reported it in another thread a long time ago and our fix was to stick to Legacy network, though that option seems to be removed now. Since that option is removed, our semi working solution is to use http proxies when making requests from another hosting platform to Railway. This happens when sending a lot of requests from a single IP to Railway. It was never a problem in Legacy, not sure why it is now. Note: even with 5k proxies rotating, we still get timeout errors. Not often but it’ll come here and there
86 replies
RRailway
Created by gazhay on 8/25/2024 in #✋|help
Gateway/edge down?
we still experiencing this? its only happening on our railway-edge hosted services, frequent timeouts cc: @blank (revived)
23 replies
RRailway
Created by gazhay on 8/25/2024 in #✋|help
Gateway/edge down?
experiencing the same thing too
23 replies