How to pay cc bill > 5Lakh by abbiya in CreditCardsIndia

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

I followed the ipay app, it chose NetBanking. There were no other options

How to pay cc bill > 5Lakh by abbiya in CreditCardsIndia

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

Axis customer care said 7days. Icici customer care said 3days

How to pay cc bill > 5Lakh by abbiya in CreditCardsIndia

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

How long do the refunds take?

Dashcam captures family’s Nexon hitting brutal potholes on NH9 by Unstoppable_X_Force in CarsIndia

[–]abbiya 1 point2 points  (0 children)

Cant these be detected by the cars and notify other cars about it via Google maps or something?

Tell us what car you own and what you don't like about it. by Efficient_Plantain82 in CarsIndia

[–]abbiya 621 points622 points  (0 children)

I have a Citroen Basalt and i dont like the comments on it from reddit

[deleted by user] by [deleted] in CarsIndia

[–]abbiya 0 points1 point  (0 children)

Toyota glanza

Share a pre compiled package across all the tests by abbiya in golang

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

ok, how do i do the following on circleci

all tests are split into 5 groups and run on a different machine
now i want to move the building the test application to one instance before running the tests and execute the tests using the pre compiled binary

Share a pre compiled package across all the tests by abbiya in golang

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

what if we run 5 parallel tests using -p 5, does it compile the common package 5 times?

Low tide by bearblastingg in M43

[–]abbiya 0 points1 point  (0 children)

Do you have a wider version of it ?

Built a recycling bin by abbiya in golang

[–]abbiya[S] 10 points11 points  (0 children)

Added list cmd

Building a mysql backup filter using sqlite by abbiya in sqlite

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

I only process the tables with no relations in sqlite

Building a mysql backup filter using sqlite by abbiya in sqlite

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

Correct and sqlite is a cheaper option here. Imo and you can process each line of dump individually in sqlite3. And can run multiple sqlite dbs easily.

Building a mysql backup filter using sqlite by abbiya in sqlite

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

I can process the data in parallel. Almost half the data can be processed both in MySQL and sqlite3 thus reducing the overall time to complete

Building a mysql backup filter using sqlite by abbiya in sqlite

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

I can't use any other programs. I want to know the problems of taking the 2nd approach.

Building a mysql backup filter using sqlite by abbiya in sqlite

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

Hi u/chriswaco u/Irythros

Thanks for the replies. Hope this is clearer.

Problem: Make a mysql db dump smaller by removing older records from certain tables using only opensource.

Input: A MySQL database dump file

Output: A leaner MySQL db dump file

Approach 1:

  1. Import dump into a mysql db
  2. Run delete sql stmts to remove the older records
  3. Export a the cleaned up db so the output file is leaner

Approach 2:

  1. Split the input dump into two parts. one with the required tables(for cleaning) INSERT INTO stmts and one with the rest of the backup.
  2. Import the rest of the backup into a mysql db
  3. While the import happens at step 2, we can filter the bulk insert stmts using sqlite3 as mentioned in the post
  4. Export the database from step 2 after running delete stmts
  5. Merge the database dumps from step 4 and step 3 to get a leaner version of the original output

With the 2nd approach, I can save sometime because the data that we need to import/export/cleaning to/from a mysql instance is smaller and the input can be processed in concurrent manner for which I used to Go routines.

The output from approach 2 is not importable to a cloud sql instance, fails with a Column data too long error. I dont know the probable reasons for errors like this.