Forge SQL vs KVS – A practical comparison for Marketplace developers For my latest project I switched from Forge Storage (KVS) to Forge SQL for the data layer. Here's what I learned and why it matters. The problem with KVS for structured data Forge Storage works fine for simple key-value lookups. But once your app stores scan results with multiple dimensions – severity, category, space, timestamp, status – you hit walls fast: Want all critical findings for a specific space? You're either fetching everything and filtering client-side, or maintaining multiple index keys manually. Aggregations ("how many issues per category?") require loading all records into memory. The query API has quirks – I've dealt with zombie data from partial writes that are painful to clean up. No way to do atomic updates across related records. What Forge SQL gives you Forge SQL provisions a MySQL-compatible database (TiDB under the hood) per installation. Actual tables, actual SQL. Concrete example – fetching findings: -- KVS approach: fetch all, filter in JS const all = await storage.query().where('key', startsWith('finding:')).getMany(); const filtered = all.results.filter(r => r.value.severity === 'critical' && r.value.spaceKey === 'ENG'); -- SQL approach: let the DB do the work SELECT * FROM findings WHERE severity = 'critical' AND space_key = 'ENG'; Aggregation: -- KVS: load everything, reduce in memory -- SQL: SELECT category, COUNT(*) as count, SUM(CASE WHEN severity = 'critical' THEN 1 ELSE 0 END) as critical_count FROM findings GROUP BY category; For a cleanup tool where admins want dashboards, filtering, and bulk operations – night and day difference. The tradeoffs No foreign keys. JOINs work, CASCADE DELETE doesn't. You handle referential integrity yourself. Schema migrations go through a migrationRunner + scheduled trigger pipeline. More ceremony than just writing new KVS keys, but also more predictable. Adding SQL to an existing app triggers a major version upgrade. Every installed instance needs admin consent. If you're greenfield, no issue – if...
All Posts
Keyboard shortcuts:
j next, k previous, o open post, e expand/collapse, s save, f follow-up, Enter mark read & advance, ? help
Summary:
• Developer switched from simple storage to SQL database for their marketplace app
• SQL allows complex searches and data analysis that simple storage can't handle
• Explains technical tradeoffs and when each approach works best for app developers
Atlassian Developer Community @community.developer.atlassian.com 9h ago
Atlassian Product Management 65% relevant rss
Summary:
• Marketplace vendor suspects competitor left fake one-star review without using their app
• They provided evidence to Atlassian support but haven't received any response
• Asking about review investigation process and how conflicts of interest are handled
Summary:
• User struggling with PostHog mobile apps that only show basic event data, not full dashboards or user profiles
• Mobile web version through Safari keeps logging out every 1-2 weeks and has performance issues
• Considering building custom dashboard using API but looking for better existing solutions
Summary:
• User can't figure out how to use their 2,000 Rovo credits for code review despite having them available
• Admin gave them free trial credits but system still shows 'no credits' message on pull requests
• Both user and admin are confused about how to properly enable and use the credit system
Summary:
• Developer frustrated with messy Jira setup inherited from previous teams over 5 years
• Built a tool to visualize and clean up unused project settings and workflows
• Shows how software tools can become cluttered and hard to manage without proper maintenance
• Offers solution for teams struggling with similar organizational tech debt
Atlassian Developer Community @community.developer.atlassian.com yesterday
Atlassian Building 70% relevant rss
Summary:
• Developer's apps stuck in Atlassian marketplace review for months with no feedback
• One app gets automatically rejected within seconds with no explanation given
• Shows frustration with unclear approval processes for software developers
• Highlights need for better communication from app store platforms
Summary:
• Many teams are using AI tools but not seeing real improvements in their work
• Common problems include trying too many tools without changing workflows
• Warns against 'AI theater' - making changes that look impressive but don't help
• Offers advice on how to actually get value from AI tools in product development
Atlassian Developer Community @community.developer.atlassian.com yesterday
Atlassian Product Management 75% relevant rss
Summary:
• Developer wants to connect their meeting app to Atlassian's automation system but faces technical roadblocks
• Current solution requires permissions that disqualify the app from preferred status
• Proposes new ways for apps to trigger automated workflows within Atlassian's ecosystem
Summary:
• Someone asking about pros and cons of Atlassian's FastShift migration service
• No details provided in this short post
Summary:
• Person is cautious about Atlassian's FastShift migration service for moving to cloud
• Seeking experiences from other administrators who have used this migration method
• Expresses skepticism about Atlassian's fast-track solutions based on past experience
Atlassian Developer Community @community.developer.atlassian.com yesterday
Atlassian Uncategorized 25% relevant rss
Summary:
• Technical question about using Atlassian's API as a backend connection
• Very brief post with minimal context provided
Summary:
• Atlassian adds AI to help teams create content faster in Confluence
• AI can turn ideas into formatted documents by pulling from existing company data
• Aims to reduce time spent on manual writing and formatting tasks
• Could change how teams collaborate and share knowledge at work
Summary:
• Atlassian launched Rovo Dev, an AI coding assistant built into VS Code
• Helps developers work faster by connecting code, project tickets, and documentation
• Reduces time spent switching between different tools and breaking focus while coding
Summary:
• Substack added new design tools for publishers to customize their homepage
• Introduced recipe formatting that makes cooking instructions easier to follow
• Added ability to schedule live video streams on Android and desktop apps
Summary:
• Person trying to buy Jira software for their company department
• Can't find any sales representatives or clear pricing information
• Website keeps redirecting without allowing them to schedule a meeting
Summary:
• Startup hired over 70% of employees who applied directly without referrals
• Candidates who asked better questions during interviews were more likely to get hired
• Company created video about questions they wish more job applicants would ask
Summary:
• New Jira admin needs help choosing apps for their team of 375 users
• Confused about what's normal pricing versus too expensive for workplace software
• Looking for guidance on what companies typically pay for these tools
Atlassian Developer Community @community.developer.atlassian.com 2d ago
Atlassian Uncategorized 25% relevant rss
Summary:
• Developer submitted an app to Atlassian's marketplace but got rejected with no explanation
• Can't access their support ticket due to permission errors
• Needs help getting access to track their app approval status
Summary:
• Person figured out how to automatically fill Jira forms with existing issue data
• Uses Smart Forms and automation to save time on repetitive data entry
• Shares the solution to help others who struggled with the same problem
Summary:
• Organization wants to create internal and external knowledge bases using Confluence
• Person is looking for examples of well-designed public Confluence sites for inspiration
• Needs good examples to convince board members to approve the project
Summary:
• User can't log into Render using their GitHub account
• Problem seems related to having multiple accounts with the same email address
• One account works fine but the GitHub-linked one doesn't
Atlassian Developer Community @community.developer.atlassian.com 3d ago
Atlassian Building 55% relevant rss
Summary:
• Participant is angry about Atlassian's Codegeist hackathon winners
• Claims some winners had no working demos or videos but still won prizes
• Feels this is unfair to developers who worked hard to build actual functioning apps
Atlassian Developer Community @community.developer.atlassian.com 3d ago
Atlassian Uncategorized 20% relevant rss
Summary:
• Developer submitted an app to Atlassian but can't access their approval ticket
• Getting 'access forbidden' error when trying to check approval status
• Asking support team to grant access so they can track their app's progress
Atlassian Developer Community @community.developer.atlassian.com 3d ago
Atlassian Uncategorized 15% relevant rss
Summary:
• Developer trying to update their Jira plugin to work with version 11.x
• Having technical problems with dependency injection that worked in older versions
• Asking community for help with specific error messages and code issues
Summary:
• Bitbucket users want secure token-free publishing to NPM package registry
• GitHub and GitLab already support this safer publishing method
• Asking people to vote on feature request to pressure Atlassian to add this security feature
Atlassian Developer Community @community.developer.atlassian.com 4d ago
Atlassian Uncategorized 25% relevant rss
Summary:
• Employee wants to search company documentation for specific acronym "PReP"
• Current search system returns too many irrelevant results like "prep" and "preparation"
• Looking for technical help to make searches more precise and case-sensitive
Summary:
• Developer needs help moving their automated system from one platform to another
• The system was designed to find and reward good deeds on social media but stopped working
• Technical issues with blockchain transactions are preventing the system from functioning
Atlassian Developer Community @community.developer.atlassian.com 4d ago
Atlassian Building 60% relevant rss
Summary:
• Developer is building a Confluence add-on that displays dates but can't control the format
• The dates always show as "Feb 10, 2026" style regardless of user settings
• Looking for help to display dates in different formats like "10.02.2026"
• This is a technical coding problem with Atlassian's development tools
Summary:
• Team needs help finding a payment method for Bitbucket software licensing
• They want to pay for 10 users on an annual plan
• Asking Reddit community for assistance with payment processing
Atlassian Developer Community @community.developer.atlassian.com 4d ago
Atlassian Product Management 70% relevant rss
Summary:
• Atlassian released early test version of Confluence 11.0 for developers
• Developers can test their apps before the final software release
• Company will release monthly updates leading up to the official launch
• Encourages reporting problems early so they can be fixed
Summary:
• HR company Personio struggled with disconnected tools slowing down their 2,000 employees
• They unified their work using Atlassian's collaboration tools (Jira, Confluence, Loom)
• Shows how fragmented systems can hurt company growth and productivity
• Case study demonstrates benefits of integrated workplace tools
Summary:
• User having technical problems connecting their GitHub account to a web service
• Gets stuck in an endless loop when trying to give permissions
• Already tried common fixes like disconnecting and clearing browser cache
Summary:
• AI tools let small teams build software much faster than before
• But users can only handle learning a few new features at a time
• Companies need to slow down releases so users can actually adopt new features
• Fast shipping creates a backlog of unused features that don't help anyone
Summary:
• Atlassian's AI assistant Rovo can now do tasks, not just answer questions
• 78% of users prefer this AI search over the old search system
• The AI helps new employees find information in seconds instead of 30 minutes
• It's shifting from chatbots to AI that can actually complete work for you
Summary:
• Companies now use hundreds of different workplace apps that don't work well together
• This creates confusion, duplicate work, and security risks for businesses
• IT leaders are pushing to use fewer, more connected tools instead
• A unified system helps teams work better together and reduces costs
Summary:
• Developer asking about setting up test environments for their app
• Wants to use different database setup for testing than production
• Needs help configuring environment variables for preview versions
Atlassian Developer Community @community.developer.atlassian.com 5d ago
Atlassian Product Management 40% relevant rss
Summary:
• User experiencing bug with project management software's scrum board feature
• Backlog items move to wrong page when refreshing and can't be moved back
• Asking community for help with this workflow issue
Summary:
• PostHog's AI tool can now search the internet for current information
• Can answer complex business questions like comparing conversion rates to industry standards
• Helps companies understand sudden changes in traffic or user behavior by researching online
Summary:
• App marketplace rankings appear to be inconsistent or broken
• Same app shows different rankings when viewed from different devices
• User is asking if others are seeing similar problems with the ranking system
Atlassian Developer Community @community.developer.atlassian.com 5d ago
Atlassian Uncategorized 35% relevant rss
Summary:
• Developer can't update draft pages using Atlassian's REST API
• The API returns "404 NOT FOUND" errors when trying to update unpublished drafts
• Developer is asking if this feature is supposed to work or if they're missing something
Atlassian Developer Community @community.developer.atlassian.com 5d ago
Atlassian Building 60% relevant rss
Summary:
• Developer submitted two performance analytics apps over 2 weeks ago
• Both apps are stuck in "Submitted" status with no feedback from Atlassian
• Developer is asking if this delay is normal or if they missed a step
Atlassian Developer Community @community.developer.atlassian.com 6d ago
Atlassian Product Management 60% relevant rss
Summary:
• Developer found that Forge app API responses are 10+ minutes behind real data
• When they add labels to work items, it takes forever to show up through the API
• Same requests work instantly with Connect apps or direct browser access
• Looking for help understanding why Forge has this delay problem
Summary:
• New college graduate got job offer as machine learning engineer at Atlassian in India
• Wants to understand what the actual work involves before accepting the position
• Looking for insights from current employees to help make career decision
Summary:
• Reports that company has temporarily stopped hiring in Australia except for critical roles
• Person seeking confirmation if this hiring freeze is actually happening
• Could indicate broader economic concerns affecting job market
Summary:
• Developer is having trouble deploying a Rust program on Render hosting service
• The service can't detect any open ports and keeps timing out
• They need help configuring their Rust code to listen on a specific port for web traffic
Summary:
• Major update to Rank Cascading tool that helps manage priorities across multiple project boards
• New features include visual maps, simulation tools, and health scoring to prevent conflicts
• Aims to solve the common problem of keeping track of what's most important across different projects
• Could help teams make better decisions about what to work on first
Summary:
• New user had $1 temporarily charged by Render hosting service for account verification
• Money hasn't been refunded after 12+ hours despite being promised it was temporary
• User can't reach customer support and needs help getting their dollar back
Summary:
• Very brief post about PR cycle time with no additional context or information
• Appears to be just a title or heading without meaningful content
Summary:
• Website owner received phishing warning from hosting company Render
• Account threatened with permanent ban over domain name similarity
• No response from support after 6+ hours, causing trust concerns
Atlassian Developer Community @community.developer.atlassian.com Feb 06, 2026
Atlassian Building 60% relevant rss
Summary:
• Two business apps are experiencing timeout errors after 25 seconds
• Previously worked fine for customers, started failing in last 24 hours
• Developer concerned about losing customers due to technical issues
Summary:
• Atlassian's server product is ending, pushing companies to cloud version
• EU companies questioning if new cloud option meets security requirements
• Concerns about following European data protection rules
Summary:
• Loom video recording software has become difficult to use since Atlassian bought it
• Users can't log in properly and get redirected to confusing pages
• Customer support is hard to reach because it requires information users don't have
• Shows how company takeovers can disrupt tools people rely on for work
Atlassian Developer Community @community.developer.atlassian.com Feb 06, 2026
Atlassian Uncategorized 30% relevant rss
Summary:
• Developer asking about migrating apps from Atlassian Connect to Forge platform
• Wants to know if existing webhooks will keep working during the transition
• Concerns about maintaining functionality until 2026 deadline
Atlassian Developer Community @community.developer.atlassian.com Feb 06, 2026
Atlassian Uncategorized 25% relevant rss
Summary:
• Developer asking how long Atlassian's connectModules feature will continue working
• Wants to know if support extends beyond Q4 2026
• Shows uncertainty about platform migration timelines
Summary:
• Someone made a comparison between JIRA project management software and Led Zeppelin band
• Likely a humorous take on using business tools
Summary:
• Developer built a command-line tool for Bitbucket Cloud, similar to GitHub's popular 'gh' tool
• Includes features for managing pull requests, pipelines, issues, and repositories from the terminal
• Available for free on multiple platforms and seeking user feedback
• Addresses gap in developer tools for Bitbucket users
Summary:
• Guide compares 7 different tools for tracking how people use mobile apps
• Different tools are better for different needs - some focus on debugging, others on measuring ad spending
• Choosing the wrong tool means paying for features you don't need or having a messy workflow
• PostHog is highlighted as an all-in-one platform designed for engineering and product teams
Summary:
• Atlassian tested how their AI assistant Rovo performed during a company hackathon
• Participants using Rovo were 11% more active and felt more confident about their projects
• Shows how AI tools can help teams work faster during time-pressured creative challenges
• Hackathon participants found AI particularly useful for finding information and completing tasks quickly
Summary:
• Atlassian had strong quarterly results with $1.6 billion in revenue, up 23% from last year
• Their cloud business hit $1 billion for the first time and they're gaining more large enterprise customers
• Company is heavily investing in AI tools and believes AI will boost their business despite industry concerns
• They now serve over 350,000 customers including most Fortune 500 companies
Atlassian Developer Community @community.developer.atlassian.com Feb 05, 2026
Atlassian AI 70% relevant rss
Summary:
• Engineers are having trouble connecting AI coding assistants to Jira work tracking software
• The connection keeps timing out and requiring users to log in again repeatedly
• This makes it frustrating to use AI tools for creating and updating work tickets
Summary:
• Woman got 50% pay raise offer but worried about timing with family planning
• Concerned about how pregnancy might affect performance reviews at new job
• Seeking advice on whether to accept dream opportunity given personal circumstances
Summary:
• New user can't find the usual project creation options in Jira software
• Missing the plus button and project templates that appear in tutorial videos
• Only seeing limited options compared to what's shown in online help guides
Summary:
• Atlassian hosting webinar on using AI to speed up code reviews
• AI tool can check code against company standards and reduce review time by 45%
• Will show how to connect AI reviews to work tickets and improve code quality
Atlassian Developer Community @community.developer.atlassian.com Feb 05, 2026
Atlassian Building 65% relevant rss
Summary:
• Developer having problems with app sharing links for coding contest
• Links stopped working after moving app to developer space
• Worried this will affect judging process for hackathon submission
Atlassian Developer Community @community.developer.atlassian.com Feb 05, 2026
Atlassian Uncategorized 30% relevant rss
Summary:
• Atlassian is releasing major updates to their business software products
• Main focus is improving security by fixing vulnerabilities and updating old code
• Updates include newer versions of programming tools and better protection against attacks
• Companies using these products will get stronger security but need to plan for upgrades
Summary:
• Developer built an AI tool that automatically reads company help documents during emergencies
• Solves the problem of people not reading important guides when systems break at 3am
• The AI finds relevant information and posts summaries in team chat channels
• Code is available for free on GitHub for others to use
Summary:
• New tool or ranking system for measuring good writing quality
• Suggests that good writing isn't just about following a simple checklist
• Appears to be related to AI writing evaluation
Summary:
• Developer built a tool to help migrate business software code between different systems
• Converts old Java code to new REST API format automatically using pattern matching
• Includes AI integration and can identify code that can't be converted
• Looking for beta testers with large code libraries to try the tool
Atlassian Developer Community @community.developer.atlassian.com Feb 04, 2026
Atlassian Product Management 60% relevant rss
Summary:
• Company is migrating from old software to explore new team management tools
• Wants to replace custom-built app for managing teams and employee roles
• Looking for advice on Teamwork Graph capabilities before making the switch
• Seeking community input on whether the new tool can handle their needs
Atlassian Developer Community @community.developer.atlassian.com Feb 04, 2026
Atlassian Uncategorized 25% relevant rss
Summary:
• Developer having trouble with links not working after moving to Atlassian Forge platform
• Security restrictions are blocking external links from opening in embedded frames
• Technical issue affects customer support tools like Intercom that rely on popup windows
Atlassian Developer Community @community.developer.atlassian.com Feb 04, 2026
Atlassian Uncategorized 20% relevant rss
Summary:
• Developer's app has been waiting for Atlassian marketplace approval for over 14 days
• No updates or feedback received since submitting the Jira Service Management app
• Asking for status update and whether additional information is needed
Summary:
• Atlassian launched tool that connects AI assistants like ChatGPT and Claude to Jira and Confluence
• Allows AI tools to search, read, and create content in these work platforms
• Aims to reduce context switching between different work tools and AI assistants
Summary:
• DuckDuckGo donated $1.1 million to privacy and digital competition groups worldwide
• This marks their 15th year of supporting organizations that protect online privacy
• Money goes to nonprofits working to make the internet safer and more trustworthy for users
Summary:
• Single word post about products with no context or details
• Not enough information to understand what this is about
Summary:
• ReUp Education used a coaching program to train all their managers
• Shows how companies are investing in leadership development
• Could help other organizations improve their management training
Summary:
• Guide on using AI tools to help with team meetings
• Could make meetings more productive and organized
• Shows how AI is being used for everyday workplace tasks
Summary:
• Developer having trouble with workflow automation tool being blocked by security systems
• Problem occurs when trying to update complex workflows through programming interfaces
• Seeking help from others who might have faced similar technical issues
Atlassian Developer Community @community.developer.atlassian.com Feb 04, 2026
Atlassian Uncategorized 20% relevant rss
Summary:
• Bug report about a time picker that won't close properly
• Happens when users clear the time using backspace key
• Developer seeking fix for this user interface problem
Summary:
• Bitbucket now allows developers to use one security token across multiple services
• Makes it easier to connect different tools without storing multiple passwords
• Simplifies workflow setup for development teams
Atlassian Developer Community @community.developer.atlassian.com Feb 04, 2026
Atlassian Uncategorized 25% relevant rss
Summary:
• Developer asking for better documentation about error handling in Jira's programming interface
• Current documentation doesn't clearly explain which error fields are required
• Makes it harder to write reliable code that handles problems properly
Summary:
• PostHog compares itself to Heap, both tools that track how people use websites and apps
• PostHog claims to offer more features in one platform instead of needing multiple tools
• They emphasize being built for engineers with fast development and good technical support
• Company promotes transparency by sharing pricing, roadmap, and business details publicly
Summary:
• Heap is a tool that automatically tracks website activity without manual setup
• PostHog positions itself as a better alternative that includes more features
• Heap lacks some key features like A/B testing and detailed debugging tools
• Companies might need multiple tools with Heap but could use just PostHog instead
Summary:
• New AI writing test called Hemingway-bench measures writing quality
• Suggests that good writing isn't just about following simple rules
• Appears to be a leaderboard comparing different AI writing tools
Atlassian Blog @atlassianblog.wpengine.com Feb 03, 2026
Atlassian Product Management 75% relevant rss
Summary:
• Guide offers 5 simple daily challenges to improve team performance without major changes
• Includes replacing meetings with quick written updates and redesigning boring team rituals
• Focuses on helping teams work faster and stay connected through small consistent improvements
• Designed for busy teams that feel scattered and need better coordination
Atlassian Developer Community @community.developer.atlassian.com Feb 03, 2026
Atlassian Product Management 40% relevant rss
Summary:
• Developer struggling to set up custom API endpoints in Atlassian Forge app
• Getting unauthorized errors despite following official documentation step-by-step
• Technical issue with OAuth permissions and API access tokens not working properly
Atlassian Developer Community @community.developer.atlassian.com Feb 03, 2026
Atlassian Uncategorized 25% relevant rss
Summary:
• Atlassian's customer service widget shows error messages in browser console when added to websites
• Developer found a simple code fix that stops the error from appearing
• Shows how third-party tools can have bugs that affect website performance
Summary:
• Someone built a tool that automatically copies priority rankings from main tasks to subtasks
• Helps project managers keep task priorities organized without manual work
• Could save time for teams managing complex projects
Summary:
• Developer created tools to fix broken links after companies move from server to cloud systems
• Atlassian's official migration tools left many links broken with no easy fix
• New apps scan and repair thousands of broken links automatically while providing audit trails
• Shows how third-party developers fill gaps when major software companies don't solve migration problems
Atlassian Blog @atlassianblog.wpengine.com Feb 03, 2026
Atlassian Product Management 80% relevant rss
Summary:
• Poor communication at work costs US businesses about $203 billion per year in lost productivity
• 80% of workers recently did unnecessary work because they misunderstood written messages
• Teams need better communication tools and methods, not just better people skills
• Senior executives lose up to 3 full work days per month fixing communication problems
Summary:
• User can't find the option to merge cells in Confluence tables anymore
• The dropdown arrow that used to appear when selecting multiple cells is missing
• Asking if this feature was removed from the software
Atlassian Developer Community @community.developer.atlassian.com Feb 03, 2026
Atlassian Product Management 70% relevant rss
Summary:
• Developer struggling with app pricing because usage costs are unpredictable
• They might charge customers $100 but get billed $120 based on data usage they can't control
• Also wondering if developing apps without deploying them counts toward usage bills
Summary:
• Person accidentally signed up for paid Loom service and wants to cancel
• Their free trial ended and now shows a $24 charge pending
• They didn't add payment details so hoping they won't actually be charged
Atlassian Developer Community @community.developer.atlassian.com Feb 03, 2026
Atlassian Building 60% relevant rss
Summary:
• Developer sharing code to check if their app has a valid license
• Code handles both development and production environments differently
• Includes specific commands for deploying and installing the app with active license
Summary:
• Bitbucket is adding more powerful computing options for software builds
• New 24x and 32x options provide up to 64 CPU cores and 128GB of memory
• Designed for developers working on increasingly complex software projects
Summary:
• Substack adding custom themes and branding to mobile apps
• Creators can now show their unique style while reaching large audiences
• Tries to solve the problem of choosing between personal branding and audience reach
Summary:
• Developer having trouble with blueprint setup using Docker image
• Image works through web interface but fails in automated deployment
• Technical support question about cloud hosting configuration
Summary:
• Developer stuck trying to deploy app for over a month
• Getting error with Python command even after following instructions
• Shows frustration with technical deployment problems
Summary:
• Person used AI coding tools to predict which teams will play in each 2026 World Cup match
• Ran one million simulations to help decide which games to attend
• Found AI coding helpful but required lots of checking since it made mistakes and forgot context