4,726 questions
1
vote
3
answers
153
views
Can't open more than 8000 TCP connections with Java
I am trying to open to open 10K+ connections to a server, but my app stops at 8K connections when looking at the server logs. When using two remote servers, it will struggles when reaching between 8K ...
0
votes
0
answers
72
views
How to properly use "limit" in AWS Amplify Gen2 list-function?
Please help me to understand how to properly and correctly use the list-function of AWS Amplify.
After running into many issues of existing data not being found/retrieved, I found out that if no "...
0
votes
0
answers
34
views
Why are calendar items limited to one month?
I am using a fairly stock version of the calendar on a RockRMS website. Don't worry about that if you aren't familiar. There will be Lava code mixed in the JS below. Just ignore that. It is set to the ...
0
votes
1
answer
86
views
How to display all received features from WFS service
I need to read a feature collection from GIS server using its WFS service and display it on my map using OpenLayers 10.4. It looks to me OpenLayers somehow limit amount of feature they reneder on the ...
0
votes
0
answers
115
views
Python - Trading IG - Reason: ATTACHED_ORDER_LEVEL_ERROR
I have tried to place a limit order in Python (using Trading-IG).
Here is the code:
resp = ig_service.create_working_order(
currency_code="GBP",
direction="BUY",
...
0
votes
1
answer
101
views
Azure Data Factory Copy Operation Character Limit for the Query Pane to copy data
I am looking to identify the character limit while entering a query (beyond which the pane will not take more strings) in the Azure Data Factory copy operation. I tried looking up on the official ...
0
votes
0
answers
80
views
Graph Email Reporting Only Gives 10 Results
I've got some draft code, eventually I will modify this to output daily via email, but am wondering if anyone knows how to get it to output more than 10 results. I'm querying emails sent by a certain ...
0
votes
0
answers
53
views
Issue with IIS application pool memory limit in Azure(Blazor .NET)
I have a Blazor application deployed on an IIS application pool running on an Azure server. However, I'm facing an issue with a memory leak, and while I'm working on fixing it, I want to limit the RAM ...
0
votes
0
answers
212
views
DBT BigQuery error: Quota exceeded: Your table exceeded quota for imports or query appends per table
We've got an instance of DBT running on BigQuery, and as the number of models have increased over time (more projects, more stakeholders, more data to cover), increasingly from time to time we've been ...
0
votes
0
answers
51
views
How to increase the limit for sending Gmail emails, which previously had a limit of 1500 but has been reduced to 100/email
How to increase the limit for sending Gmail emails, which previously had a limit of 1500 but has been reduced to 100/email.
can anyone help me?
I hope my Google Workspace account can return to normal ...
0
votes
1
answer
128
views
ODBC Firebird connections limit
I have simple code that creates connection to Firebird (any version, from 2.5 to 5.0).
C#, x64, FbConnection, 1000 connections, all working fine:
List<FbConnection> fbList = new List<...
1
vote
1
answer
301
views
Play Asset Delivery size limit for install-time asset pack in 2024
I have an app using AAB and want to confirm size limit for install-time asset pack.
From https://support.google.com/googleplay/android-developer/answer/9859372#size_limits it says "Base module ...
-1
votes
3
answers
157
views
Wordpress database size limit has exceed
I have database on Hpanel and its limit has been exceed I have try to repair and optimize but it was not helpful enter image description here
I have tried to repair and optimize the database also ...
0
votes
1
answer
77
views
How can I implement pagination using the google-ads-api Node js package?
I am trying to get the search terms,but it is returning 32k records at once. I want to limit the result and implement pagination so that it returns 100 records at a time. I can't find anything in the ...
1
vote
1
answer
127
views
MySQL pagination query is very slow [duplicate]
I have this table using InnoDB as engine:
create table if not exists Playlists(
UserId bigint unsigned not null,
Title varchar(50) not null,
IsPublic bool not null,
primary key (UserId,...
0
votes
3
answers
219
views
Add a limit parameter
In Oracle I can have an SQL string like this
select * from table where rownum <= ?
Then in a PreparedStatement I can set the rownum as a parameter.
How does it work with PostgreSQL JDBC (Java) ...
0
votes
2
answers
225
views
Work in Python with large date years without limitations of DateTime, epoch
I searched a lot about this issue and surprisingly I didn't find anything useful.
I made a program in Python inspired in relativity theory. A dilation time is calculated in seconds and then sums it to ...
10
votes
2
answers
910
views
In what range does incrementing and decrementing Java doubles work?
I'm writing a Java class that tracks a fractional number, but needs to be able to increment and decrement it. Using a double for this number seems to work fine for small values, but I'm trying to ...
2
votes
2
answers
102
views
Can I batch Snowflake json output into separate rows based on LIMIT/OFFSET
I have a query in Snowflake that produces json output in rows. 29,000+ rows. I am using this query to create records in an MDM system. However, this ingestion process is a bit inefficient and costly. ...
1
vote
1
answer
78
views
Way to limit memory usage on a R version 4.0+ windows session?
Is there a way to set a limit on the memory usage for a windows R session with R version 4.0 and above? I have found post regarding setting a limit on R 3.6.3 and below by using a command line flag: -...
-3
votes
2
answers
140
views
why does the difference quotient where h = FLT_MIN always equals 0? How can I add the smallest number possible to a float?
I am trying to find the slope of a Bezier curve using the difference quotient:
( f(x + h) - f(x) ) / h
In calculus we usually use limits where we assume h is infinitely small and we evaluate the ...
0
votes
1
answer
324
views
TF237201: Cannot add a new link because one of the work items being linked will exceed the 1000 link limit
My team was using Azure DevOps Service and encountered this error:
TF237201: Cannot add a new link because one of the work items being linked will exceed the 1000 link limit. Remove links from that ...
0
votes
0
answers
517
views
Limiting the amount of data used in dev across a dbt project
I'll often insert some jinja logic into a model's SQL file in order to limit the amount of data being used for a dbt run:
select *
from source('web_events', 'page_views')
{% if target.name == 'dev' %}
...
1
vote
0
answers
46
views
Why does Start-Process Powershell -Command .... length limit change with -Credential?
Powershell has Start-Process cmdlet (start a new process) which can be a new powershell and get it to run whatever e.g. via -Command & {scriptblock} .
Limitation on/after ‘-Command ‘ of 32,760 ...
0
votes
0
answers
49
views
How to get the surface plot and color bar values to be the same in two different plots [duplicate]
I have two original plots, #1: original data
And #2: Fitted data
I would like the colors in the two plots to correspond. Meaning, the flat zero-value regions outside of the peaks are the same color, ...
0
votes
1
answer
77
views
Why doesn't the function curves in R plot correctly when they exceed a functions boundry?
Let's say I have probability distribution function from some sort of function within a given boundry. Its total area is of course 1 within this boundry. It's defined as zero outside this boundry.
f &...
1
vote
1
answer
113
views
limit iOS bluetooth connection to one device being used
Is there a way to limit bluetooth to one device connection so people cannot create unwanted connections on the iPhone in IOS. Some people just want the music.app and not kali linux connections...
0
votes
1
answer
278
views
Nginx keeps hitting connection limit although I only use one connection
I configured nginx as followed (shortened):
http {
limit_conn_zone $binary_remote_addr zone=conn_zone:10m;
server {
limit_conn conn_zone 50;
limit_conn_log_level error;
...
0
votes
1
answer
345
views
SharePoint metadata column limitations - how to understand them
I am not sure if I correctly understand those limits:
https://learn.microsoft.com/en-us/office365/servicedescriptions/sharepoint-online-service-description/sharepoint-online-limits#managed-metadata
...
0
votes
0
answers
221
views
Sending long JWT tokens in a HTTP request in sim7600
I am using sim7600 module to make a GET request to a HTTPs site. The endpoint requires Tokens for authentication. The token is sent via HTTP parameters with the following AT command.
AT+HTTPPARA="...
0
votes
1
answer
70
views
Maple equation problem : Limit and Sum at the same time
I need to evaluate
using the Maple Software.
I did manage to make my equation look like the given by using
"Limit(Sum(1/(i^(9/5)), i=1..n),i = infinity);"
However, I could not proceed any ...
0
votes
1
answer
91
views
Calculate symbolic limit in sympy error message
I´ve tried to calculate symbolic limit in sympy but got an error message.
import sympy as smp
from sympy import *
n,x=smp.symbols('n x')
limit(simplify(integrate(exp(-x)*exp(-smp.I*n*x),x).args[0][0]),...
0
votes
0
answers
221
views
Caught signal 11 (Segmentation fault: address not mapped to object at address 0x35)
Is this error a result of MPI or memory limit?
I tried different different number of cores and different directories. However, I can not change the version of MPI because the software asks for lastest ...
0
votes
2
answers
66
views
MySQL Performace on pagination with limit
If going to some very end of the pages, it will still fully scan all the previous records (on Disk).
One of the solution is to get the ID of the last previous record and then use where to filter (...
1
vote
1
answer
126
views
How is it possible to create float variable in C++ that is less than min float value? [duplicate]
#include <iostream>
#include <limits>
int main()
{
float x = std::numeric_limits<float>().min(); // x = 1.17549e-38
float y = 1.17549e-39f; // I created a variable that is ...
0
votes
0
answers
387
views
Limit data read from a table in Athena?
Is it possible to limit the number of rows read from a table with an Athena query, and if so how?
I looked at the LIMIT statement, but it seems LIMIT doesn't affect how many rows are scanned, but ...
0
votes
1
answer
980
views
execvp: Argument list too long
I'm working with Cygwin in Windows XP (through virtual machine), with a legacy project that I was given to try figuring out. When trying to build the code (several snapshots/revisions), it fails when ...
1
vote
3
answers
78
views
How do I put a limit to groups?
This is my first day of learning Python and my very first project. so i have 62 items in my data and want it to randomly pick out 48 of them and put them each in a group of 4. So a total of 48 in 12 ...
0
votes
1
answer
30
views
How to limit number of table A lines in a select with more joins table B, table C,
I have more tables that are joined together:
module.exports = function (sequelize, DataTypes) { class Document extends AT_ModelDb { static associate(models) { // define association here ...
0
votes
0
answers
207
views
Increasing The Limits On POSIX Message Queues
I am running a process in Windows Subsystem for Linux(WSL), where I am trying to communicate with windows processes. In the process, many mailboxes are required and extensive communication is expected....
0
votes
0
answers
111
views
Almost empty git repo has huge size
I had an iOS repo on bitbucket and reached a limit of 4Gb. The repo started to deny any commits.
I decided to remove Pods folder using one of these instructions:
Remove folder and its contents from ...
0
votes
0
answers
94
views
Why is this PostgreSQL query with LIMIT so slow?
I have a .NET WebApi with two entities (please forgive the silly names, it's just an example):
public class Father
{
public int Id { get; set; }
public string Name { get; set; } = null!;
...
3
votes
1
answer
3k
views
Why does Elastic search limit the maximum shard number to 1k per node?
"The cluster shard limits prevent creation of more than 1000 non-frozen shards per node, and 3000 frozen shards per dedicated frozen node. Make sure you have enough nodes of each type in your ...
0
votes
0
answers
1k
views
AWS S3 presigned Url > 5gb limit
I have scoured the web for more information on the upload limit of AWS S3 presigned urls, but have not found a clear answer.
I have seen that by default AWS will limit the file size to 5gb, but you do ...
0
votes
2
answers
604
views
python input() function cuts off really long inputs
I'm writing a solution to a programming challenge and I was getting the answer wrong, but only for really long inputs. The issue doesn't appear to be my algorithm, but that the python input function ...
0
votes
1
answer
188
views
Can images be blocked from being pushed to Harbor based on the number of artifacts for that image?
I see some teams push an unnecessary number of image artifacts (revisions/tags) to a harbor repository. I understand that there may be some rules that can be applied that prune artifacts but I do not ...
1
vote
1
answer
285
views
How to pass arguments for LIMIT and OFFSET in a Snowflake SQL stored procedure?
Here is my stored procedure:
CREATE OR REPLACE PROCEDURE TCT_WEBAPP.DBO.GET_FILTERED_PAGINATION_PROVIDERS(
"MONTH_START" VARCHAR(20),
"MONTH_END" VARCHAR(20),
"...
0
votes
0
answers
81
views
MySQL-Query with LIMIT 25 is slower?
I have a SQL-query like
SELECT somefields
FROM T1
INNER JOIN T2 ON T1.x=T2.x
LEFT JOIN (SELECT somefields FROM T3 WHERE y=123 GROUP BY z)X ON T1.a=X.a
WHERE t1.m=4 AND t1.n>0 AND t1.date1 >...
3
votes
0
answers
302
views
SecurityException: The number of child package elements exceeded the max allowed in queries
On android 14 I get an error when adding more than 1000 elements inside a element in AndroidManifest.
Caused by: java.lang.SecurityException: The number of child package elements
exceeded the max ...
1
vote
0
answers
1k
views
Error: max retries exceeded:get Get "https://xyz.z2.cloudflarestorage.com/ollama/docker/registry/v2/blobs/sha256/78/numbers/data?X-A-Algorithm=xyz&xy
I am using Ubuntu 22.04 series and I am installing the LLM using Ollama models page and I am getting an error while installing the LLM in my terminal.
the error is :
pulling manifest
pulling ...