Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add query settings interface #46

Merged
merged 9 commits into from
Sep 29, 2019
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion connection.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ const (
type odpsConn struct {
*http.Client
*Config
hints map[string]string
}

// ODPS does not support transaction
Expand Down Expand Up @@ -129,7 +130,7 @@ func (conn *odpsConn) wait(query string, args []driver.Value) (string, error) {
query = fmt.Sprintf(query, args)
}

ins, err := conn.createInstance(newSQLJob(query))
ins, err := conn.createInstance(newSQLJob(query, conn.hints))
if err != nil {
return "", err
}
Expand Down
20 changes: 15 additions & 5 deletions driver.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,26 @@ import (

// register driver
func init() {
sql.Register("maxcompute", &Driver{})
sql.Register("maxcompute", &MaxcomputeDriver{})
}

// impls database/sql/driver.Driver
type Driver struct{}
// MaxcomputeDriver impls database/sql/driver.Driver
type MaxcomputeDriver struct {
conn odpsConn
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm not sure if it is reasonable to maintain a conn inside the driver.

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Maybe it's okay, we need to maintain the settings struct in the DB object and the Driver struct can be exposed when we implement the sql.database.

}

func (d Driver) Open(dsn string) (driver.Conn, error) {
func (o MaxcomputeDriver) Open(dsn string) (driver.Conn, error) {
cfg, err := ParseDSN(dsn)
if err != nil {
return nil, err
}
return &odpsConn{&http.Client{}, cfg}, nil
o.conn = odpsConn{&http.Client{}, cfg, nil}
return &o.conn, nil
}

// SetQuerySettings sets the global query settings.
// TODO(Yancey1989): add the one-off query settings interface.
func (o MaxcomputeDriver) SetQuerySettings(hints map[string]string) error {
o.conn.hints = hints
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

deep copy or shallow copy?

return nil
}
9 changes: 9 additions & 0 deletions driver_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,12 @@ func TestSQLOpen(t *testing.T) {
defer db.Close()
a.NoError(err)
}

func TestQuerySettings(t *testing.T) {
a := assert.New(t)
db, err := sql.Open("maxcompute", cfg4test.FormatDSN())
a.NoError(err)
db.Driver().(*MaxcomputeDriver).SetQuerySettings(map[string]string{"odps.sql.mapper.split.size": "16"})
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Does this test verify the hints is effective?

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Shall we also test odps.sql.mode = script?

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Does this test verify the hints is effective?

No, it's not easy to test odps.sql.mapper.split.size on the client-side. But maybe test UDF script is good way, will add this one.

_, err = db.Query("SELECT * FROM gomaxcompute_test LIMIT;")
a.NoError(err)
}
4 changes: 2 additions & 2 deletions job.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ func newJob(tasks ...odpsTask) *odpsJob {
}
}

func newSQLJob(sql string) *odpsJob {
return newJob(newAnonymousSQLTask(sql, nil))
func newSQLJob(sql string, hints map[string]string) *odpsJob {
return newJob(newAnonymousSQLTask(sql, hints))
}

func (j *odpsJob) MarshalXML(e *xml.Encoder, start xml.StartElement) (err error) {
Expand Down
4 changes: 4 additions & 0 deletions task.go
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,10 @@ func newSQLTask(name, query string, config map[string]string) odpsTask {
"uuid": uuid.NewV4().String(),
"settings": `{"odps.sql.udf.strict.mode": "true"}`,
}
} else {
if _, ok := config["uuid"]; !ok {
config["uuid"] = uuid.NewV4().String()
}
}
// maxcompute sql ends with a ';'
query = strings.TrimSpace(query)
Expand Down