Hacker Newsnew | past | comments | ask | show | jobs | submit | sethreno's commentslogin

Will Neki be a branch of [Citus](https://github.com/citusdata/citus) or is it more based on Vitess?


Inspired by Vitess seeing as we are the company behind Vitess but it's a new codebase.


Is your service open source? I'd be interested in testing it. Also, you could speed up formatting in CI by only formatting files that changed.


Nah, this is from my day job so it's a proprietary closed source thing. Supposedly the CI speed issues are because the CI has to start with cold caches every run (we use Gitlab pipelines that run in docker containers) whereas the IDE has the caches on hand. Something about the way our devops has set up the Gitlab runners makes enabling shared cache much hard than it should be so I haven't had the chance to test that. I don't think I ever tried limiting it to only changed files, that's worth a shot.


I wish their was a standard c# formatter too. dotnet-format doesn't support wrapping long lines which is one of the more important features in my opinion.

Resharper has a free command line tool that supports wrapping long lines. https://www.jetbrains.com/help/resharper/CleanupCode.html

I made a wrapper for it to try and make it easier to use. https://github.com/sethreno/ReGitLint#regitlint


Thanks I will check it out


In my experience installing updates to Jenkins has been painless, 2.0 was no different.


I've always been afraid of updating Jenkins or the plugins because things always broke. Always.

That being said, I updated a few instances to 2.0, immediately applied all plugin updates and things kept working as before. That was a surprise. I was already prepared to spend hours trying to find why our jobs were failing. That was nice.


We have had problems but mainly with plugins. There's basically no mandatory QA process for plugins, nor is there any facility to make it obvious to an updater that an upstream change affects a downstream plugin and might break it.

In my opinion, Jenkins is a product that you really need to have a test instance for, where you either have copies of your builds or you've set up some 'unit test'-type builds to exercise functionality you depend on.


Thanks for the two parent comments for relaying their experience. I'll keep it in mind should I need to upgrade this box.

I was already prepared to spend hours trying to find why our jobs were failing.

Yeah, that's exactly what I'm not prepared for, and trying to avoid. :-) No one pays the little Mac Mini on my desk much mind...until it doesn't work.


I prefer to think of db version control and db migrations as two separate things.

Version control achieved by keeping the SQL scripts to create the database in your VCS along with the code that depends on it.

Migration scripts are created later as a pre-deployment step. I prefer not to store these scripts in VCS because in my experience they are typically run once and never used again. There are several tools that can generate the migration scripts by comparing two schemas e.g. dev-->prod.

I wrote an open source command line tool that can be used to create VCS friendly create scripts from a SQL Server database. It's on github at https://github.com/sethreno/schemazen#schema-zen---script-an...

Also, here are a few tools that I've used to generate migrations scripts: * http://opendbiff.codeplex.com/ * http://www.sqldbtools.com/Tools.aspx?ProductId=1 * http://www.red-gate.com/products/sql-development/sql-compare...


Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: