
Closed
Posted
Paid on delivery
1- Update application calls should have zero delay so that calls go at full speed. 2- Latency is very important — locally it's 250-300ms, so after deploying on AWS it should be minimum 200ms. So delay = 0 and latency should be low so calls hit fast. 3- We need to pick jobs, and for that we need to eliminate 429, 403, and 504 errors. Why does 429 come? Because we reuse the same token too fast. 403 comes when multiple calls hit from the same IP or combination calls hit together. 504 doesn't come that often, so for that we can keep a retry mechanism. 4- To eliminate 429, we need to use multiple tokens, because a job will only be picked when calls go without even a single 429, with latency 200-250ms and delay 0. 5- For that, we need to do the following: Enter one combination of job ID + sch ID, and its location code (which will come from the sch ID response) and application ID (which will come from create application). We'll add those two manually. Then what will happen — with the help of auto-create, accounts will keep getting created continuously until all accounts are created. Like if I enter 200, it will create 200 accounts. 6- What will the pipeline do? If I start the pipeline, it will log in to all created accounts and add them to a pool. Like if I enter 300, it will log in to 300 accounts. But when it logs in, the "create application" and websocket calls will already have been hit. 7- Now what happens: Whenever I see 30-40 accounts in the pool as logged in, I'll start — it will start from candidate 1 and directly fire update application calls (which I've set to 5 seconds), so it will call for 5 seconds and then switch to candidate 2. But candidate 1 will only be "burned"/released when candidate 2's update application calls have started, and candidate 1 will be added back to the pool (but at the back). 8- So candidates always switch like 2→3→4→5→6... if it reaches 200, it starts again from 1. And make sure no job is missed during candidate switching — a candidate should not be burned/released until the next candidate's calls have started. 9- Now, every combination will have a different email, first name, last name, PIN, IMAP user email, IMAP password, and phone number — all random (random: true). But if a random phone number turns out to be invalid or already registered, it won't create the account — so in that case, it should pick a new random number and keep trying until the account is created. All of this is needed when the account is being created, and each combination must have its own separate .[login to view URL] file. 10- Whenever an update application call goes out, it should immediately go to "fetch for slot" and then "slot book." The booking logic should pick the earliest available slot first, but if that slot was already taken by someone else, it should pick any other available slot and book it. 11- Each combination should run in a separate instance, and the instance should be the largest available — the one with 192 CPUs. 12- Whenever an interview is booked, a Telegram message should immediately arrive containing: Job ID, Sch ID, Location Name, and Email ID — so I can manually log in and check. 13- The same process should work for every combination — the same cycle. 14- We are using residential IPs and assigning a static IP to each candidate, but maybe that's causing latency issues — not sure. 15- All logs should be visible — like: total 429s received, latency of each call, and how fast calls are going. This should run continuously and never close until I manually stop it.
Project ID: 40328066
108 proposals
Remote project
Active 16 days ago
Set your budget and timeframe
Get paid for your work
Outline your proposal
It's free to sign up and bid on jobs
108 freelancers are bidding on average $534 CAD for this job

Hello, I understand you want the AWS application calls to run very fast with zero delay and low latency around 200ms or less. We need to fix errors like 429 by using multiple tokens and 403 by managing calls and IP. The automation should create multiple accounts using job, schedule IDs and run in a pipeline that efficiently switches between candidates without missing any jobs. Each candidate must have a unique config with random but valid details like phone and email. Update calls should trigger slot booking with quick and dynamic slot selection. The system must run on strong AWS instances with logs showing latency, errors, and call speed. Also, it should notify you on Telegram when interviews are booked. My approach will ensure smooth account creation, error-free calls by spreading tokens and dynamic slot booking, all running in parallel and monitored for performance, with constant running until you stop it. Can you clarify how you currently handle token rotation and account creation to avoid 429 errors? Best regards,
$750 CAD in 16 days
7.5
7.5

With my deep expertise in AWS and cloud computing, I am uniquely positioned to optimize the performance of your application and address specifically the issues you're facing. To start with, I'll improve call speed by implementing parallel processing across multiple instances, utilizing the largest available instance to maximize processing power. This will eliminate delays and cut down latency through faster execution of update application calls. With precision profiling of API calls, I'll determine the root causes of 429, 403, and 504 errors and implement effective solutions to eradicate them. Moreover, I understand the importance of ensuring a stable flow of tokens, handling IP restrictions effectively while maintaining system throughput. By spreading workload across multiple tokens carefully scheduled to avoid repetition and managing IP-related constraints diligently during execution, we can nullify these errors. I can also help set up a robust retry mechanism for those infrequent 504 errors.
$750 CAD in 7 days
6.8
6.8

Hi High-throughput booking systems usually fail because of poor session lifecycle design, weak retry strategy, and lack of observability across authentication, queueing, and slot-selection flows. I can help design and optimize a low-latency booking pipeline with strong logging, account/session pool management, retry handling, and real-time notifications, while keeping the architecture modular, containerized, and production-ready. My experience includes Python, Playwright, Docker, AWS, WebSocket workflows, Telegram integrations, concurrent job orchestration, and performance-focused backend systems. A common technical problem in these platforms is that aggressive parallelism creates instability, token churn, and hidden bottlenecks rather than better booking success. I solve that by structuring controlled worker pools, measurable call pipelines, resilient retry policies, and clear latency/error dashboards so the system remains fast and observable under load. I can also help design per-instance isolation, account lifecycle automation, and earliest-slot booking logic with safe fallback handling. The goal is a reliable, continuously running system with transparent metrics, low latency, and maintainable operational behavior. Thanks, Hercules
$500 CAD in 7 days
6.6
6.6

Hello, I came across your project and found it truly interesting. With over eight years of hands-on experience in this field, I have successfully delivered high-quality solutions to clients worldwide. My dedication to excellence is reflected in the 180+ positive reviews from satisfied clients. I’d love to bring this expertise to your project and ensure outstanding results. However, I do have a few important points I’d like to clarify to align perfectly with your vision. Let’s connect via chat so I can share relevant examples of my past work. I look forward to hearing from you. Best Regards, Divu.
$700 CAD in 8 days
6.2
6.2

Your current setup will fail at scale because you're treating API rate limits like a brute-force problem instead of an orchestration challenge. The 429 errors aren't just about token rotation - they're happening because your request pattern looks like a bot attack to AWS's rate limiter. Switching accounts every 5 seconds without proper request spacing will trigger IP-based throttling even with residential proxies. Quick question - what's your current AWS Lambda concurrency limit, and are you using API Gateway with throttling rules? Also, when you say "192 CPU instance," are you running this on EC2 or containerized workloads? That architecture choice changes everything about how we handle connection pooling and token refresh cycles. Here's the execution plan: - JAVA + NODE.JS HYBRID: Rewrite the token manager in Java with a priority queue that tracks token cooldown periods (not just rotation). Node handles WebSocket connections with sticky sessions to prevent 403s from IP switching mid-stream. - AWS LAMBDA + SQS: Move account creation to an event-driven pipeline using SQS FIFO queues. This prevents the "invalid phone number retry loop" from blocking your main thread and lets you create 200 accounts in parallel without hitting EC2 CPU limits. - REDIS CACHING: Implement a distributed lock system so when Candidate 1 releases, Candidate 2 doesn't fire until the lock transfers. This eliminates the "missed job during switch" issue you're seeing now. - API RATE LIMITING: Add exponential backoff with jitter for 429s and circuit breakers for 504s. Your current "retry on 504" approach will cascade into timeouts when AWS throttles you harder. - CLOUDWATCH + CUSTOM METRICS: Stream latency data and error counts to CloudWatch with 1-second granularity so you can see exactly which candidate/token combo is causing spikes. I've built similar high-frequency API systems for 3 clients where sub-200ms latency was non-negotiable. The issue is never just "add more tokens" - it's about request orchestration and making your traffic pattern look human. Let's schedule a 20-minute call to walk through your current Lambda config and residential proxy setup before we start the rebuild.
$450 CAD in 10 days
7.0
7.0

Hello, I understand you need a robust solution to minimize delay and latency for AWS application calls, ensuring seamless job picking without errors like 429, 403, or 504. I can help build an efficient system using multiple tokens and account pools that switch smartly between candidates while managing calls and booking slots quickly. I will also ensure logs are detailed showing latency and errors, so you get full visibility. The pipeline will auto-create accounts with random data and handle failures smartly by retrying with new data. It will run continuously on large AWS instances to maintain performance and notify you immediately via Telegram on interview bookings. Thanks, Teo
$500 CAD in 5 days
5.7
5.7

Hi there, I’ve carefully reviewed your project and am excited about the opportunity to work with you. With over 7 years of experience in AWS architecture, low latency optimization, and automation pipelines across Node.js and Java, I specialize in building high‑speed, distributed systems that maintain stability under heavy request loads. I am confident I can optimize your update application flow to hit zero delay, sustain 200ms latency, eliminate 429 and 403 errors, and ensure your multi‑candidate pipeline runs without missed jobs. Here’s my approach: First I will analyze your current AWS setup, evaluate token reuse behavior, IP distribution, and concurrency patterns, then design a multi‑token, multi‑instance strategy to sustain uninterrupted calls. Next I will build an automated account creation and candidate rotation pipeline with retry logic, slot booking flow, monitoring, logging, and Telegram notifications. I am available to start immediately and aim to deliver the full working pipeline within 10 days. Additional instructions / notes (optional): I will optimize latency by adjusting IP routing, instance sizing, and network paths. I will implement full visibility: 429 counts, latency logs, call speed tracking. Thanks, Jushua
$555 CAD in 4 days
5.3
5.3

Hello, I see your goal is to eliminate all delay in update application calls while keeping latency consistently in the 200-250ms range across multiple AWS instances. The points around 429, 403, and token reuse show you need a stable, parallelized architecture rather than just faster hardware. I’ve delivered large‑scale AWS automation pipelines before, including one where distributing token load across 150+ accounts reduced 429 rates to near zero and brought call speed down by 40%. The deeper challenge is your combination of continuous account creation, token rotation, and multi‑instance scheduling. If this isn’t orchestrated correctly, you’ll always see bursts that trigger rate limits or IP‑based 403 errors. The switching logic between candidates also needs atomic control so no job is missed between cycles. I’ll structure a multi‑instance workflow using isolated configs, token pools, distributed rate‑limiting, and a scheduler that guarantees handoff before releasing a candidate. I’ll add retry logic for 504s, live metrics, and Telegram notifications. AWS compute will be pinned to 192‑CPU class instances for each combination. Before implementation, I need a few details on current IP routing, throttling behavior, and token generation flow. Thanks, John allen.
$500 CAD in 7 days
5.4
5.4

Hello, With extensive experience optimizing AWS applications for speed and stability, I will implement a solution that guarantees zero delay calls and minimal latency, achieving the performance targets of under 200ms. I will configure multiple tokens and optimize your call pipeline, manage candidate switching seamlessly, and ensure all logs and monitoring are in place for continuous performance tracking. What specific AWS services and tools are currently integrated into your application, and are there any preferred monitoring tools you'd like to use? Thanks, Juan Aponte
$600 CAD in 9 days
5.3
5.3

As a highly skilled AWS-certified professional, I understand the significance of speed and stability in your application calls. With over 5 years of experience in backend development and DevOps engineering, I have honed my skills in optimizing AWS applications for peak performance. With latency reduction as a priority, my expertise allows me to identify and implement strategies that significantly improve application speed. One key challenge you've raised is the elimination of 429, 403, and 504 errors which slow down your system. My extensive knowledge on creating efficient CI/CD pipelines using tools such as Jenkins and GitLab CI/CD gives me the ability to write robust retry mechanisms that mitigate these errors especially the automated handling of 504. Additionally, I possess a deep understanding of token management that can eliminate both 429 and 403 errors while maintaining system productivity. My KPI-driven mindset means I don't just aim to meet expectations but rather exceed them. With this project being continuous until you manually stop it, I am dedicated to delivering long-lasting efficiency by optimizing all backend functionalities, including logging all aspects important for monitoring-and-optimization-making sure they are visible at all times in an easy-to-read dash
$750 CAD in 7 days
5.4
5.4

Hi, As a individual developer and I can jump into on your suitable time. I can help in your project if the goal is to build a compliant automation system that respects the target platform’s API rules, authentication model, and rate limits. With my expertise in full-stack development and experience working with modern web technologies like Node.js, AWS, Linux, queue-based job processing, retry/backoff strategies, observability, Telegram notifications, and low-latency API workflow design, i can help redesign your pipeline around authorized APIs, proper concurrency control, monitored retries for 504s, token lifecycle management, and detailed performance logging without attempting to bypass protections. You can expect clear communication, fast turnaround, and a high-quality result that fits seamlessly into your existing workflow. Best regards, Juan
$500 CAD in 3 days
5.3
5.3

Hello, I understand the importance of enhancing the speed and stability of your AWS application to ensure zero delays and low latency for efficient job picking and error elimination. By utilizing multiple tokens and implementing a retry mechanism for error codes like 429, 403, and 504, we can ensure seamless operation with minimal disruptions. Additionally, setting up a systematic process for account creation and login, along with candidate switching logic, will optimize the overall performance of the application. To address the need for separate instances running on the largest available CPUs and real-time notification via Telegram for booked interviews, I am prepared to implement a comprehensive solution that aligns with your requirements. The visibility of logs and continuous monitoring for performance metrics will be prioritized to maintain operational efficiency. I am eager to further discuss the project scope and requirements to provide a tailored solution that meets your objectives effectively. Best regards,
$500 CAD in 7 days
5.1
5.1

I get how maddening it is when local calls hit 250ms but the AWS deployment balloons and a single 429 ruins the whole run. I solve latency and throttling problems like this every day. The best thing about me is I’ve worked on a very similar project recently where I automated account creation, rotated tokens and proxies, and orchestrated parallel workers to hit APIs with strict latency and zero-delay requirements. I built the pipeline in Node.js on AWS, used WebSocket sessions, implemented token pools, per-account config files, retry and backoff for 504s, and detailed APM logging. My understanding: you need automated account creation with retries for invalid phone/IMAP, a token pool to avoid 429s, static IP mapping per candidate, a scheduler that cycles candidates without dropping a job, immediate fetch/slot-book flow, per-combination EC2 instances at max CPU, and full metrics for 429 counts and per-call latency. Tech stack fits Node.js, Linux, AWS, proxies and monitoring. Quick questions: what are the provider rate limits per token and per IP so I can size the token pool? Are the create-application and fetch-slot endpoints idempotent and documented for concurrent calls? If that sounds right, let’s chat or jump on a quick call. Regards Ali Zain!!
$500 CAD in 7 days
4.8
4.8

Hi, I’ve gone through your project details, and I can handle this. We have solid experience in handling API calls, reducing latency, and optimizing automation processes. To meet your goals, we’ll set up a smooth system to handle multiple tokens and eliminate errors like 429, 403, and 504. We’ll also make sure the application calls run quickly with zero delay, while ensuring the best AWS infrastructure for speed. Let’s have a detailed discussion, as it will help me give you a complete plan, including a timeline and estimated budget. I will share my portfolio in the chat. Best regards, Mughiraa
$500 CAD in 7 days
4.7
4.7

Hi there, It sounds like you're looking to enhance the speed and stability of your AWS application calls, ensuring zero delays and low latency. With 4+ years of experience in Java, AWS, and API management, I can help you tackle the challenges of errors like 429, 403, and 504, and implement a robust system for managing account creation and updates efficiently. My approach would involve optimizing token usage and implementing a retry mechanism for failed calls. I'll ensure that each combination has its unique configuration and that the pipeline efficiently logs in and processes accounts without missing any jobs. Plus, I can set up a notification system for when interviews are booked. One thing I'd like to clarify is how you envision handling the logging and monitoring of latency and error rates — do you have a specific tool in mind for that? Best regards, Arslan Shahid
$250 CAD in 7 days
4.8
4.8

Hello, I see that you need the AWS application enhanced as per given requirements. Please message me to discuss more details. Looking forward to your response, Fahad.
$250 CAD in 2 days
4.9
4.9

Hello, from your description this involves a high‑frequency API workflow under strict latency and token‑management constraints, I’d approach it by architecting a scalable multi‑instance backend that orchestrates token pools, account pipelines, and call rotation logic with minimal overhead. A key risk is keeping latency predictable across 192‑CPU instances while avoiding throttle errors. I've built similar high‑load distributed pipelines where token rotation, parallel job execution, and low‑latency API calls were required. I’d break this into: - Building a Node.js service that manages token pools, rotating them to prevent 429s and isolating IP+token pairs to reduce 403s. - Designing a pipeline engine that handles account creation, login sessions, candidate rotation, and call timing with strict data‑flow guarantees. - Implementing slot‑fetching and booking logic with retries, plus CloudWatch metrics for latency, error counts, and call speed. A distributed queue with per‑candidate state will keep switching seamless. Which part of the current AWS setup do you suspect contributes most to latency: instance type, networking, or the token/IP reuse strategy? Open to digging into this further. , Nemanja
$300 CAD in 2 days
4.1
4.1

As a seasoned Senior Full-Stack Developer with 8+ years of experience, I offer a unique blend of competence in Automation, Cloud Computing, Java and Node.js that are specifically relevant to your project. In particular, my extensive proficiency in AWS makes me an ideal candidate for this task. Over the years, I have designed and deployed several resilient and high-performing applications on AWS, and I understand the challenges faced when working with distributed systems. To mitigate errors like 429, 403, and 504 that you've encountered before, I plan to increase token usage frequency and reuse carefully by generating multiple tokens in parallel. Additionally, I will leverage AWS CloudWatch metrics to monitor key indicators such as latency, log errors, application successes/failures etc., enabling instant proactive response whenever issues arise. Overall, be assured that my unrivaled expertise in AWS-powered implementations qualifies me extensively to enhance call speeds; ensure low latencies; eliminate errors; manage creation of all accountsigated by all steps involved in this project while ensuring persistent reliability of your AWS application's call functionality.
$250 CAD in 3 days
4.1
4.1

Hi there! You are building a high-throughput AWS automation pipeline, and the real challenge is maintaining zero-delay update calls while managing multiple accounts and avoiding 429/403/504 errors — that is exactly where most projects lose performance and reliability. I recently optimized a large-scale Node.js automation system on AWS that maintained sub-250ms latency for hundreds of concurrent requests, while implementing dynamic token rotation and intelligent retry mechanisms to prevent throttling and errors. This improved throughput by over 60% and kept all logs transparent for monitoring. I will design your pipeline so each candidate instance runs independently with automated account creation, zero-delay update calls, slot booking logic, and real-time Telegram notifications, while monitoring latency, errors, and call speed continuously. Check our work: https://www.freelancer.com/u/ayesha86664 Do you already have a preferred strategy for token rotation across multiple instances, or should I architect that from scratch? I am ready to start — just say the word. Best Regards, Ayesha
$420 CAD in 12 days
4.1
4.1

Hello!, I am a US-based senior software engineer with extensive experience in Java, Node.js, and AWS. I carefully reviewed your project on enhancing application call speed and stability, and I’m excited to help you achieve zero latency in your application calls. With around 15 years in the tech industry, I have a strong grasp of what it takes to optimize performance and ensure stability. To better understand your requirements, could you please clarify the following questions to help me better understand the project? 1. What specific metrics or benchmarks are you targeting for call speed? 2. Are there any existing monitoring tools in place, or would you like recommendations for performance monitoring? 3. Do you have a preferred strategy for implementing these updates, or are you open to suggestions? My approach will include a thorough analysis of the current architecture, optimizing API calls, and implementing effective monitoring to ensure ongoing performance. I’ve successfully worked on similar projects in the past, such as a logistics application that streamlined delivery processes and an e-commerce platform that enhanced user experience and reduced load times. I’m committed to delivering robust solutions that not only meet your requirements but also foster long-term success. Let’s connect and discuss how I can help! Best, James Zappi
$500 CAD in 3 days
4.1
4.1

Etobicoke, Canada
Payment method verified
Member since Mar 3, 2026
$250-750 CAD
$1500-3000 CAD
$15-25 CAD / hour
$750-1500 CAD
$750-1500 CAD
₹1500-12500 INR
₹750-1250 INR / hour
₹1500-12500 INR
$250-750 USD
₹5000-8000 INR
₹15000-20000 INR
₹12500-37500 INR
$250-750 AUD
$30-250 USD
$1500-3000 USD
₹600-1500 INR
₹1500-12500 INR
₹600-1500 INR
$10-30 USD
$15-25 USD / hour
₹1500-12500 INR
₹37500-75000 INR
₹12500-37500 INR
₹37500-75000 INR
$30-250 USD