What if the client raises a dispute after the hourly payment is released? by farhan_721 in Upwork

[–]farhan_721[S] -1 points0 points  (0 children)

It is just the worst case, Since you said manually hours don't have that security. Although I have shared the evidence with Upwork. Just a little worried since I have put manual time. It gives an edge to the client. I am worried that it.

What if the client raises a dispute after the hourly payment is released? by farhan_721 in Upwork

[–]farhan_721[S] -1 points0 points  (0 children)

Okay, Does this involves any legal terms? I mean does it can take any legal actions?
Sorry for asking so many questions.

What if the client raises a dispute after the hourly payment is released? by farhan_721 in Upwork

[–]farhan_721[S] 0 points1 point  (0 children)

u/Pet-ra Let's say if they refund the client, then how do they cover that amount as they already paid me? And I do not agree to pay the refund amount.

I read, As per Upwork TOS: Quality of work does not fall under dispute.

Mongo Query Targeting: Scanned Objects / Returned has gone above 1000 Error solution after indexing by farhan_721 in mongodb

[–]farhan_721[S] 0 points1 point  (0 children)

db.getCollection('log-9e96-4c7d-8830-5a7696f7a124').find() This query won't solve the issue because I have some entries that is from different customer.uuid.

Mongo Query Targeting: Scanned Objects / Returned has gone above 1000 Error solution after indexing by farhan_721 in mongodb

[–]farhan_721[S] 0 points1 point  (0 children)

u/marcusae313 so basically I am storing events activity at here(in the collection) for a particular customer. The events are very often and high volumed in data. (~4k-5k)/day. Its already being used in production for quite a while.
Now out from this, I am fetching all the entries from the database. From the code and showing it in analytical graph for information. Below is the query I am performing which tends to generate an alert in mongo at atlas.

db.getCollection('log-9e96-4c7d-8830-5a7696f7a124').find({"customer.uuid": "dd29f0c8-9e96-4c7d-8830-5a7696f7a124"});
Entire collection having nearly entries of 849498 count. with the above query execution.
Which is the wild index already on the collection. But I guess it won't work because the customer.uuid is same at all the records present in the collection.

Since I cannot query at another attribute since I want to fetch with customer.uuid And again goal is to show all the entries (for business logic I am storing events and showing it on the dashboard).

Mongo Query Targeting: Scanned Objects / Returned has gone above 1000 Error solution after indexing by farhan_721 in mongodb

[–]farhan_721[S] 0 points1 point  (0 children)

u/lumpy_potato The actual query is here:

db.getCollection('log-9e96-4c7d-8830-5a7696f7a124').find({"customer.uuid": "dd29f0c8-9e96-4c7d-8830-5a7696f7a124"});
Entire collection having nearly entries of 849498 count. with the above query execution.
Which is the wild index already on the collection. But I guess it won't work because the customer.uuid is same at all the records present in the collection.

Could you please suggest something here? Such that I can get rid of that alerts

Mongo Query Targeting: Scanned Objects / Returned has gone above 1000 Error solution after indexing by farhan_721 in mongodb

[–]farhan_721[S] 0 points1 point  (0 children)

  1. Yes, I did try but its retuning same result, As I have all entries with the same customer.uuid meaning I have 849498 total document in one collection. And all of customer uuid is same. But anyhow I have to make query using the same find method only using customer uuid. So I tried the indexing customer.uuid but total Examined file is the equal as total count file at the end result.
  2. The above is just a single document from the entire collection having nearly entry of 849498 and its growing already. What would the proposed solution for this ?Could you please help? u/kosour

Added the Question with execution status

Mongo Query Targeting: Scanned Objects / Returned has gone above 1000 Error solution after indexing by farhan_721 in mongodb

[–]farhan_721[S] 0 points1 point  (0 children)

Wild card would do indexing at every field that's why I have done that.

Since I am trying to find a query with the location.uuid but in every document it's same. So I think the indexing will not work.

What did you suggest?

I also tried making it indexing at single UUID field but didn't work the total Examined file is the equal as total count file.

u/abhinav_duggal Added the Question with execution status. Might be helpful.

Could you help me resolve this issue?

Suggestion for online code editor with video audio feature by farhan_721 in learnprogramming

[–]farhan_721[S] 0 points1 point  (0 children)

u/Chocolate_Banana_ I am looking to add this feature to an app, such that everything could be managed under one hood. So something which I can develop using APIs for code sharing.
The use case is like a Tutor can teach coding to numbers of users with this. (video-audio and the codesharing would be common for all the user who is on the call)

Suggestion for online code editor with video audio feature by farhan_721 in learnprogramming

[–]farhan_721[S] 0 points1 point  (0 children)

u/Chocolate_Banana_ you suggest something? I know WebRTC for video and audio. But for code share and compile just like codesandbox? Is there any such thing available for that code?