Git Product home page Git Product logo

Comments (5)

agentzh avatar agentzh commented on July 25, 2024

@gholly Concatenating multiple SQL statements in a single query string should save several roundtrips between your nginx server and the mysqld server, and thus faster. You do not really need the transaction thing here for the batch mode to work.

from lua-resty-mysql.

gholly avatar gholly commented on July 25, 2024

@agentzh First,Thank you for your answer.If the stitching multiple sql statement to insert into a string , and if one insert statement insert fails, three tables will not be able to keep pace . Missing rollback function .
How to avoid this situation ?

from lua-resty-mysql.

gholly avatar gholly commented on July 25, 2024

I try to write like this:

  local db,err = mysql:new()
  local ok,err,errno,sqlstate = db:connect(dbconf)    
  if not ok then
      ngx.say("failed to connect: ", err, ": ", errno, " ", sqlstate)
      return
  end


 res, err, errno, sqlstate = db:query("insert sql1;insert sql2;insert sql3;")
 if not res then
     ngx.log(ngx.ERR, "bad result #",   ": ", err, ": ", errno, ": ", sqlstate, ".")
      return
 end
 local i=2
 while err == "again" do
     res, err, errno, sqlstate = db:read_result()
     if not res then
          ngx.log(ngx.ERR, "bad result #", i, ": ", err, ": ", errno, ": ", sqlstate, ".")
          return  
     end
   -- ngx.say("result #", i, ": ", cjson.encode(res))        
    i = i + 1
end

local ok, err = db:set_keepalive(10000, 1000)
if not ok then
   ngx.log(ngx.ERR,"failed to set keepalive: ",err)
   --ngx.exit(500)
 end

But the performance of this is stilll low:
image

What methods should be used to ensure that the table can be synchronized, and high performance?

from lua-resty-mysql.

agentzh avatar agentzh commented on July 25, 2024

@gholly Before optimizing anything, you should determine the bottleneck first. If you cannot max out your nginx worker processes's CPU usage to 100% then your mysqld server is the bottleneck. Otherwise, you can use the on-CPU flame graph tools (both on C land and Lua land) to determine the bottlenecks of the nginx server. See

http://openresty.org/en/profiling.html

BTW, it's recommended to move such general discussions to the openresty-en mailing list. This place is preserved for bug reports and development discussions. Thank you for your cooperation. Please see

http://openresty.org/en/community.html

from lua-resty-mysql.

gholly avatar gholly commented on July 25, 2024

@agentzh Well, first of all thank you for your advice, I try to use the on-CPU flame graph tools to maxout the nginx worker processes's CPU usage to higher.
I'll move to the question later openresty-en mailing list.

from lua-resty-mysql.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.