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

roachtest: acceptance/build-analyze failed #49154

Closed
cockroach-teamcity opened this issue May 16, 2020 · 6 comments · Fixed by #49285
Closed

roachtest: acceptance/build-analyze failed #49154

cockroach-teamcity opened this issue May 16, 2020 · 6 comments · Fixed by #49285
Assignees
Labels
branch-master Failures and bugs on the master branch. C-test-failure Broken test (automatically or manually discovered). O-roachtest O-robot Originated from a bot. release-blocker Indicates a release-blocker. Use with branch-release-2x.x label to denote which branch is blocked.
Milestone

Comments

@cockroach-teamcity
Copy link
Member

(roachtest).acceptance/build-analyze failed on master@5156843cc23adecb6a70fabf19f51f46de1241ec:

The test failed on branch=master, cloud=gce:
test artifacts and logs in: /home/agent/work/.go/src/github.com/cockroachdb/cockroach/artifacts/acceptance/build-analyze/run_1
	build_info.go:90,acceptance.go:94,test_runner.go:753: scanelf returned non-empty output (executable stack): RWX --- ---  cockroach

More

Artifacts: /acceptance/build-analyze

See this test on roachdash
powered by pkg/cmd/internal/issues

@cockroach-teamcity cockroach-teamcity added branch-master Failures and bugs on the master branch. C-test-failure Broken test (automatically or manually discovered). O-roachtest O-robot Originated from a bot. release-blocker Indicates a release-blocker. Use with branch-release-2x.x label to denote which branch is blocked. labels May 16, 2020
@cockroach-teamcity cockroach-teamcity added this to the 20.1 milestone May 16, 2020
@cockroach-teamcity
Copy link
Member Author

(roachtest).acceptance/build-analyze failed on master@2cbf620cd229a55622fe17fb15d20ada1dbcccd3:

The test failed on branch=master, cloud=gce:
test artifacts and logs in: /home/agent/work/.go/src/github.com/cockroachdb/cockroach/artifacts/acceptance/build-analyze/run_1
	build_info.go:90,acceptance.go:94,test_runner.go:753: scanelf returned non-empty output (executable stack): RWX --- ---  cockroach

More

Artifacts: /acceptance/build-analyze

See this test on roachdash
powered by pkg/cmd/internal/issues

@cockroach-teamcity
Copy link
Member Author

(roachtest).acceptance/build-analyze failed on master@7ab7fb86f0634df1f5a0b04460e1f3a1d6bead1f:

The test failed on branch=master, cloud=gce:
test artifacts and logs in: /home/agent/work/.go/src/github.com/cockroachdb/cockroach/artifacts/acceptance/build-analyze/run_1
	build_info.go:90,acceptance.go:94,test_runner.go:753: scanelf returned non-empty output (executable stack): RWX --- ---  cockroach

More

Artifacts: /acceptance/build-analyze

See this test on roachdash
powered by pkg/cmd/internal/issues

@andreimatei andreimatei assigned bdarnell and unassigned andreimatei May 18, 2020
@andreimatei
Copy link
Contributor

@bdarnell do you know anything about this executable stack regression? Feel free to pass back.

@bdarnell
Copy link
Contributor

It's in pebble: cockroachdb/pebble#680.

@bdarnell bdarnell assigned petermattis and unassigned bdarnell May 18, 2020
@cockroach-teamcity
Copy link
Member Author

(roachtest).acceptance/build-analyze failed on master@73631089c58554c289d0fb1b26cad62667388335:

The test failed on branch=master, cloud=gce:
test artifacts and logs in: /home/agent/work/.go/src/github.com/cockroachdb/cockroach/artifacts/acceptance/build-analyze/run_1
	build_info.go:90,acceptance.go:94,test_runner.go:753: scanelf returned non-empty output (executable stack): RWX --- ---  cockroach

More

Artifacts: /acceptance/build-analyze

See this test on roachdash
powered by pkg/cmd/internal/issues

petermattis added a commit to petermattis/cockroach that referenced this issue May 19, 2020
* internal/private: ratchet visible sequence number too
* internal/rate: add Limiter.Delay{,N}
* db: refactor tableCache.estimateDiskUsage into withReader
* internal/cache: optimize common case of Cache.Delete()
* internal/cache: remove weak cache handles
* internal/randvar: optimize Uniform.IncMax
* internal/{manual,rawalloc}: remove empty assembly files
* internal/replay: assign ingested tables correct sequence number
* db: wait for pending writes during ingestion
* db: replace tableCacheShard LRU with CLOCK-Pro
* internal/randvar: reduce exclusive locks in randvar
* cmd/pebble: miscellaneous ycsb benchmark improvements
* internal/rate: change Reserve{,N} to return a value

Fixes cockroachdb#49154

Release note: None
@cockroach-teamcity
Copy link
Member Author

(roachtest).acceptance/build-analyze failed on master@8fec3f4c6d136a86f472c975edd36b75e5ab9a8c:

The test failed on branch=master, cloud=gce:
test artifacts and logs in: /home/agent/work/.go/src/github.com/cockroachdb/cockroach/artifacts/acceptance/build-analyze/run_1
	build_info.go:90,acceptance.go:94,test_runner.go:753: scanelf returned non-empty output (executable stack): RWX --- ---  cockroach

More

Artifacts: /acceptance/build-analyze

See this test on roachdash
powered by pkg/cmd/internal/issues

craig bot pushed a commit that referenced this issue May 20, 2020
49136: opt: allow join filter FDs to be used in determining a left join key r=rytaft a=DrewKimball

Previously, the functional dependencies from a join's "on" filters were
not used in determining the key of the output of a left join.

This patch allows a key that only has columns from the left input of the
LeftJoin to be used if one can be proven to exist.

The columns of the left input of the LeftJoin form a strict key over the
result of the left join when the following conditions are met:

 1. The original left input had a strict key.

 2. The columns of the left input form a strict key over the result of an
    InnerJoin between the left and right inputs on the given filters.
    (Or, in other words, the left columns form a strict key over the
     filtered cartesian product of the join inputs).

If the above conditions do not hold, a key over the unfiltered cartesian
product will simply be used, if there is one.

Release note: None

49213: sql: populate the pg_enum catalog table r=rohany a=rohany

Fixes #48359.

Release note (sql change): Populate the catalog table
`pg_catalog.pg_enum`.

49285: vendor: bump pebble to af0d71572c7bd24deb066d09eee646b6cb7460a4 r=petermattis a=petermattis

* internal/private: ratchet visible sequence number too
* internal/rate: add Limiter.Delay{,N}
* db: refactor tableCache.estimateDiskUsage into withReader
* internal/cache: optimize common case of Cache.Delete()
* internal/cache: remove weak cache handles
* internal/randvar: optimize Uniform.IncMax
* internal/{manual,rawalloc}: remove empty assembly files
* internal/replay: assign ingested tables correct sequence number
* db: wait for pending writes during ingestion
* db: replace tableCacheShard LRU with CLOCK-Pro
* internal/randvar: reduce exclusive locks in randvar
* cmd/pebble: miscellaneous ycsb benchmark improvements
* internal/rate: change Reserve{,N} to return a value

Fixes #49154

Release note: None

49336: roachtest: bump latest patch version number to 19.2.7 r=jlinder a=jlinder

Before: The latest 19.2 release was 19.2.6.

Why: 19.2.7 is released

Now: The latest noted release is 19.2.7.

Release note: None

Co-authored-by: Drew Kimball <andrewekimball@gmail.com>
Co-authored-by: Rohan Yadav <rohany@alumni.cmu.edu>
Co-authored-by: Peter Mattis <petermattis@gmail.com>
Co-authored-by: James H. Linder <jamesl@cockroachlabs.com>
@craig craig bot closed this as completed in 389b94f May 20, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
branch-master Failures and bugs on the master branch. C-test-failure Broken test (automatically or manually discovered). O-roachtest O-robot Originated from a bot. release-blocker Indicates a release-blocker. Use with branch-release-2x.x label to denote which branch is blocked.
Projects
None yet
Development

Successfully merging a pull request may close this issue.

4 participants